-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html~
More file actions
129 lines (112 loc) · 4.9 KB
/
Copy pathsignup.html~
File metadata and controls
129 lines (112 loc) · 4.9 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Care Architecture - About Us</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Styles -->
<link href="assets/css/style.css" rel="stylesheet">
<!--<link href="bootstrap-1.1.1.css" rel="stylesheet">-->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/carousel.css" rel="stylesheet">
<!-- Fav and touch icons -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<script src="assets/js/bootstrap.js"></script>
<!-- Scripts: inc. TableSorter -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="assets/js/bootstrap-carousel.js"></script>
<script src="assets/js/bootstrap-transition.js"></script>
<script src="assets/js/bootstrap-dropdown.js"></script>
<script src="assets/js/jquery.tablesorter/jquery.tablesorter.js"></script>
<!--<script src="http://autobahn.tablesorter.com/jquery.tablesorter.min.js"></script>-->
<script src="assets/js/prettify.js"></script>
<script src="assets/js/application.js"></script>
</head>
<body>
<!-- The top navigation menu -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<ul class="nav">
<li><a href="index.html"><img src="assets/img/EskatonLogo.png" /></a></li>
<!--<li><a href="about.html">About Us</a></li>
<li><a href="request-a-ride.html">Services</a></li>
<li><a href="#">Contact Us</a></li>-->
</ul>
<ul class="nav pull-right">
<li><a href="signup.html" class="">Signup</a><li>
<li class="menu">
<a href="mm1-view.html" class="dropdown-toggle" data-toggle="dropdown">
Login
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<form action="mm1-view.html" method="post">
<div class="formLine"><input class="textInput" type="text" name="username" placeholder="Username" /></div>
<div class="formLine"><input class="textInput" type="password" name="password" placeholder="Password"/></div>
<div class="formLine"><input class="vui-button" type="submit" name="submit" value="Login" style="float: right;"/><input type="checkbox" name="remember" id="remember"> <label for="remember">Remember me</label></div>
<div class="formLine" style="text-align: center;"><a style="color: #bbb;" href="#">I forgot my password</a></div>
</form>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="container-fluid">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<h2>Create a new account</h2>
</div>
<!-- Example row of columns -->
<div class="row">
<div class="span11">
<!-- An exemplar signup form -->
<form>
<fieldset>
<div class="clearfix">
<label>New Password:</label>
<div class="input">
<input type="text" />
</div>
</div>
<div class="clearfix">
<label>Retype:</label>
<div class="input">
<input class="xlarge" type="text" />
</div>
</div>
<div class="clearfix error">
<label>Email address</label>
<div class="input">
<input class="xlarge" type="text" />
</div>
</div>
<div class="clearfix">
<label>Username:</label>
<div class="input">
<input class="xlarge" type="text" />
</div>
</div>
<div class="actions">
<button class="btn primary">Done!</button>
</div>
</fieldset>
</form>
</div>
</div>
<!-- Footer -->
<footer>
<p>© Company 2011</p>
</footer>
</div> <!-- /container -->
</body>
</html>