-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsign_up.html
58 lines (56 loc) · 1.75 KB
/
sign_up.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<nav class="navbar navbar-inverse" style="margin-bottom:0px;>
<div class= "container" >
<div class="navbar-header">
<a href="index.html" class="navbar-brand" > Life Store</a>
</div>
<div>
<ul class="nav navbar-nav navbar-right">
<li><a href="sign_up.html"><span class="glyphicon glyphicon-user"> Sign Up</span></a></li>
<li><a href="login.html"><span class="glyphicon glyphicon-log-in"> Login</span></a></li>
</ul></div>
</nav>
<div class="container">
<div class="row">
<div class="col-xs-5">
<h1>Sign Up</h1>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control"/>
</div>
<div class="form-group">
<label for="name">Email</label>
<input type="text" class="form-control"/>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control"/>
</div>
<div class="form-group">
<label for="contact">Contact</label>
<input type="text" class="form-control"/>
</div>
<div class="form-group">
<label for="city">City</label>
<input type="text" class="form-control"/>
</div>
<div class="form-group">
<label for="address">Address</label>
<input type="text" class="form-control"/>
</div>
<div class="form-group">
<input type="submit" class="btn btn-primary" />
</div>
</form>
<footer>
</body>
</html>