-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
41 lines (35 loc) · 1.34 KB
/
signup.html
File metadata and controls
41 lines (35 loc) · 1.34 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
<!DOCTYPE html>
<!--[if lt IE 9]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if (gt IE 8)|!(IE)]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Fixie App - Get your caffeine fix on the road</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/main.min.css">
<link href='http://fonts.googleapis.com/css?family=Oxygen:300' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="lines">
<div class="lines--red-white"></div>
<div class="lines--blue-blue"></div>
</div>
<div class="wrap">
<header class="site-header">
<h1 class="branding"><a href="#"><img src="images/fixie-logo.svg"></a></h1>
<a href="#" class="home-link" title="return to home screen"><span class="icon-home"></span></a>
</header>
<section class="content">
<h1>Signup</h1>
<div class="form">
<label class="form__label" for="username">Username</label>
<input class="form__control" type="username" id="username"><br>
<label class="form__label" for="password">Password</label>
<input class="form__control" type="password" id="password"><br>
<button class="btn btn--red" data-url="#user/signUpForm">Signup</button>
</div>
</section>
</div>
</body>
</html>