-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
134 lines (125 loc) · 6.09 KB
/
about.php
File metadata and controls
134 lines (125 loc) · 6.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html>
<head>
<title>CryptoX</title>
<link rel="stylesheet" type="text/css" href="./css/bootstrap.css">
<link href="mystyles.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.firebase.com/js/client/1.1.3/firebase.js"></script>
</head>
<body>
<div class="container">
<nav class="navbar navbar-inverse" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php">
<p>CryptoX</p>
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="about.php">About</a></li>
<li><a href="#">Planets</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav pull-right">
<li><a href = <?php
session_start();
if ($_SESSION['userstatus']) {
echo "profile.php";
}
else {
echo "signin.php";
}
?>><?php
session_start();
if ($_SESSION['userstatus']) {
echo $_SESSION['username'];
}
else {
echo "Sign in";
}
?></a></li>
<li><a href=<?php
session_start();
if ($_SESSION['userstatus']) {
echo "session.php?redirect_to=index.php";
}
else {
echo "register.php";
}
?>><?php
session_start();
if ($_SESSION['userstatus']) {
echo "Sign Out";
}
else {
echo "Register";
}
?></a></li>
</ul>
</div>
</div>
</nav>
</div>
<div>
<div class="side-nav">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 align = "center">About Us</h1>
<h3><br> We start off with a new planet.</h3> <font size = "3">On this planet, CryptoX users define what makes up the economy. The first decision, made by the founder of the planet, is to decide what the planet's base currency will be. Planets can have any crypto currency as their foundation, and 30% of its economy is allocated to the base currency.</font>
<div class="text">
<div class="container">
<div class="row">
<div class="col-md-12">
<center><img src="./images/new_bit_planet.png" height = "250px" class = "rotate"></center>
</div>
</div>
</div>
</div>
<h3><br> A diversified economy is created.</h3><font size = "3"> The founder then allocates the other 70% of the planet's economy into other investment vehicles including stocks, bonds, currencies, and other crypto currencies. The diversity of the planet's economy is shown through the establishments on the planet. </font>
<div class="text">
<div class="container">
<div class="row">
<div class="col-md-12">
<center><br><br><br><img src="./images/world.png" height = "250px" class = "rotate"></center>
</div>
</div>
</div>
</div>
</div>
<h3><br><br><br> All planets are open ended.</h3><font size = "3"> As other users join the world they take on ownership of the planet's economy for the amount they decided to invest. Any member of the planet can suggest changes in the allocation of resources, and changes are made when the community comes to consensus. </font>
<div class="text">
<div class="container">
<div class="row">
<div class="col-md-12">
<center><br><br><br><img src="./images/world.png" height = "250px" ></center>
</div>
</div>
</div>
</div>
<h3><br> Change in ownership.</h3><font size = "3"> When a user decides to leave, they are paid out for their ownership. Users can buy and sell ownership at any time.</font>
<div class="text">
<div class="container">
<div class="row">
<div class="col-md-12">
<center><br><br><br><img src="./images/sold.png" height = "290px"></center>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>