-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.php
More file actions
88 lines (84 loc) · 3.91 KB
/
profile.php
File metadata and controls
88 lines (84 loc) · 3.91 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
<!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="index.php">Planets</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav pull-right">
<li><a href="profile.php"><?php
session_start();
if ($_SESSION['userstatus']) {
echo $_SESSION['username'];
}
?></a></li>
<li><a href = "session.php?redirect_to= index.php">Sign Out</a></li>
</ul>
</div>
</div>
</nav>
<h1 align ="center">My Worlds</h1>
<div class = "col-md-4">
</div>
<div class = "col-md-4">
<a href ="createworld.php" target ="new"><button class="btn btn-lg btn-primary btn-block" type="submit" onclick = "location.href = 'profile.php'">Create a New World</button>
</a>
</div>
<!-- <a href="createworld.php" target="new"><button type="button" style="float: right;" class="btn-success" data-color="info">Add a New World!</button></a> -->
</div>
<div class="features">
<div class="container">
<div class="row">
<div class="col-md-4">
<center><img src="./Pictures/Groups.png" <!-- height = "250px" --></center>
</div>
<div class="col-md-4">
<center><img src="./Pictures/Groups.png" <!-- height = "250px" --></center>
</div>
<div class="col-md-4">
<center><img src="./Pictures/Groups.png" <!-- height = "250px" --></center>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<center><img src="./Pictures/Groups.png" <!-- height = "250px" --></center>
</div>
<div class="col-md-4">
<center><img src="./Pictures/Groups.png" <!-- height = "250px" --></center>
</div>
<div class="col-md-4">
<center><img src="./Pictures/Groups.png" <!-- height = "250px" --></center>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>