-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
54 lines (50 loc) · 2.02 KB
/
registration.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
<!DOCTYPE html>
<html>
<head>
<title>Fitness Tracker</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="javascript/script.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="styles/styles.css">
</head>
<header>
<div class="navBarWrapper">
<div class="top bar">
<ul class="left">
<li>
<a href="login.html" class="title">FITNESS TRACKER</a>
</li>
</ul>
<ul class="right">
<div class="topnav">
<a href="login.html">login</a>
</div>
</ul>
</div>
</div>
</header>
<body>
<div class="login">
<h2>Registration</h2>
<p>Please fill in the information to register.</p>
<div class="form-group">
<form>
<label>Username</label><br>
<div id="loginInput"><input id="username" type="text" name="username"></div><br>
<label>Password</label><br>
<div id="loginInput"><input id=password type="text" name="password"></div><br>
<label>Email</label><br>
<div id="loginInput"><input id=email type="text" name="email"></div><br>
<input id="submit" onclick="registration()" type="button" value="Submit"><br>
</form>
</div>
</div>
<div class="footer">
<p>Fitness Tracker 2018</p>
</div>
</body>
</html>