-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
executable file
·67 lines (65 loc) · 3.6 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi">
<link rel="stylesheet" type="text/css" href="css/normalize.css" media="screen, projection">
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen, projection">
<link rel="stylesheet" type="text/css" href="css/icons.css" media="screen, projection">
<title>Profile</title>
</head>
<body>
<header>
<h1>Profile</h1>
</header>
<section id="content">
<form id="settings_form">
<fieldset>
<label for="settings_name">Name</label>
<input type="text" id="settings_name" maxlength="255">
<label for="settings_age">Age</label>
<input type="number" pattern="[0-9]*" id="settings_age" maxlength="255">
<label for="settings_height">Height(CM)</label>
<input type="number" pattern="[0-9]*" id="settings_height" maxlength="255">
<label for="settings_gender">Gender</label>
<select id="settings_gender">
<option>Male</option>
<option>Female</option>
</select>
<label for="settings_passcode">Update Passcode</label>
<input type="password" pattern="[0-9]*" id="settings_passcode" maxlength="4">
<label for="settings_retype_passcode">Re-Type Passcode</label>
<input type="password" pattern="[0-9]*" id="settings_retype_passcode" maxlength="4">
<p class="form-helper">It's cool if you don't want to update your passcode, just leave it blank.</p>
<input type="submit" value="Save">
</fieldset>
</form>
</section>
<footer>
<nav>
<ul>
<li class="achievements"><a href="achievements.html"><span aria-hidden="true" class="icon icon-heart"></span>Gains</a></li>
<li class="feed"><a href="feed.html"><span aria-hidden="true" class="icon icon-inbox"></span>Feed</a></li>
<li class="dashboard"><a href="dashboard.html"><span aria-hidden="true" class="icon icon-chart-2"></span>Dashboard</a></li>
<li class="socialzone"><a href="social_zone.html"><span aria-hidden="true" class="icon icon-comments"></span>Social</a></li>
<li class="settings">
<a href="profile.html"><span aria-hidden="true" class="icon icon-cog"></span>Profile</a>
</li>
</ul>
</nav>
</footer>
<div class="dim hide"></div>
<div class="modal-box hide modal-validation-error">
<h2 class="modal-validation-heading"></h2>
<p class="modal-validation-text"></p>
<div class="button_container">
<a class="button lightblue modal-remove">Okay!</a>
</div>
</div>
<script type="text/javascript" src="jscript/jquery.js"></script>
<script type="text/javascript" src="jscript/cordova-2.4.0.js"></script>
<script type="text/javascript" src="jscript/core.js"></script>
<script type="text/javascript" src="jscript/settings.js"></script>
</body>
</html>