-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
89 lines (78 loc) · 2.98 KB
/
profile.html
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>WNWN :: Profile</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style/bootstrap.min.css">
<link href="style/style.css" rel="stylesheet" media="screen">
<script src="bootstrap/jquery-2.1.3.min.js" type="text/javascript"></script>
<script src="bootstrap/bootstrap.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="style/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container">
<!--Navigation Bar-->
<nav class="navbar navbar-inverse" style="background: #b998f2">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="home.html">Waste Not Want Not</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active"><a href="home.html">Home</a></li>
<li><a href="profile.html"><span class="glyphicon glyphicon-user"></span> Profile</a></li>
<li><a href="planner.html"><span class="glyphicon glyphicon-calendar"></span> Meal Planner</a></li>
<li><a href="achievement.html"><span class="glyphicon glyphicon-queen"></span> Achievements</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="logout.html"><span class="glyphicon glyphicon-log-out"></span> Sign Out</a></li>
</ul>
</div>
</div>
</nav>
<!--All content of web page goes below this comment-->
<!--Profile Section-->
<div class="row title">
<h1> My Profile</h1>
</div>
<div class="img">
<img src="img/unknown.png" alt="profile picture"/>
</div>
<br>
<div class="col-xs-12">
<table class="table table-hover table-striped">
<tr>
<td>Username</td>
<td><i>User's name goes here</i></td>
</tr>
<tr>
<td>Email Address</td>
<td><i>User's email goes here</i></td>
<tr>
<td>Password</td>
<td><i><a>Change password</a></i></td>
</tr>
</table>
</div>
<!--Achievement Section-->
<div class="row title">
<h2>My Achievements!</h2>
</div>
<p></p>
<div class="col-xs-12">
<table class="table table-hover table-striped">
<tr>
<td>This section is temporarily blank!</td>
<td></td>
</tr>
</table>
</div>
<!--</div>-->
</body>