-
Notifications
You must be signed in to change notification settings - Fork 0
/
activate-account.html
69 lines (68 loc) · 2.36 KB
/
activate-account.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
<!DOCTYPE html>
<html>
<head>
<title>Merry Trips</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.css" media="screen"/>
<link rel="stylesheet" href="css/style.css" media="screen"/>
<link rel="stylesheet" href="css/activate-account.css" media="screen"/>
</head>
<body>
<nav id="header" class="navbar-fixed-top">
<ul id="navigation" class="relative">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Book</a></li>
<div id="logo-container"><img id='logo' src="images/logo.png"></div>
<li><a href="#">Working</a></li>
<li><a href="#">Search</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div class="beba-font" id="login-link"><a href="#">Login</a> | <a href="#">Sign-Up</a></div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-6 section-heading small-font beba-font">
Activate Your Account
</div>
</div>
<div class="row">
<div class="col-md-12 section">
<div class="row">
<div class="col-xs-4 input-label small-font right">
login id:
</div>
<div class="col-xs-8 no-left-pad">
<input type="email" class="form-control small-font" placeholder="enter email address">
</div>
</div>
<div class="row spacing-between-fields">
<div class="col-xs-4 input-label small-font right">
enter password:
</div>
<div class="col-xs-8 no-left-pad">
<input type="password" class="form-control small-font" placeholder="password">
</div>
</div>
<div class="row spacing-between-fields">
<div class="col-xs-4 input-label small-font right">
confirm password:
</div>
<div class="col-xs-8 no-left-pad">
<input type="password" class="form-control small-font" placeholder="re-enter password">
</div>
</div>
<div class="row spacing-between-fields">
<div class="col-xs-6 col-xs-offset-4 no-left-pad">
<input type="button" class="form-control small-font" value="activate account">
</div>
</div>
</div>
</div>
</div>
<div id="footer" class="navbar-fixed-bottom">
</div>
<script type="text/javascript" src="js/jquery-1.10.2.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>