-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
executable file
·88 lines (88 loc) · 3.75 KB
/
signup.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mobile first web app theme | first</title>
<meta name="description" content="mobile first, app, web app, responsive, admin dashboard, flat, flat ui">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="js/ie/respond.min.js"></script>
<script src="js/ie/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- header -->
<header id="header" class="navbar bg bg-black">
<a href="docs.html" class="btn btn-link pull-right m-t-mini"><i class="icon-question icon-xlarge text-default"></i></a>
<a class="navbar-brand" href="#">first</a>
</header>
<!-- / header -->
<section id="content">
<div class="main padder">
<div class="row">
<div class="col-lg-4 col-lg-offset-4 m-t-large">
<section class="panel">
<header class="panel-heading text-center">
Sign up
</header>
<form action="index.html" class="panel-body">
<div class="block">
<label class="control-label">Display name</label>
<input type="text" placeholder="eg. Your name or company" class="form-control">
</div>
<div class="block">
<label class="control-label">Your email address</label>
<input type="email" placeholder="[email protected]" class="form-control">
</div>
<div class="block">
<label class="control-label">Type a password</label>
<input type="password" id="inputPassword" placeholder="Password" class="form-control">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Agree the <a href="#">terms and policy</a>
</label>
</div>
<button type="submit" class="btn btn-info">Sign up</button>
<div class="line line-dashed"></div>
<div class="row">
<div class="col-sm-6 text-center">
<a href="#" class="btn btn-facebook btn-circle btn-sm"><i class="icon-facebook"></i>Sign up with Facebook</a>
</div>
<div class="col-sm-6 text-center">
<a href="#" class="btn btn-twitter btn-circle btn-sm"><i class="icon-twitter"></i>Sign up with Twitter</a>
</div>
</div>
<div class="line line-dashed"></div>
<p class="text-muted text-center"><small>Already have an account?</small></p>
<a href="signin.html" class="btn btn-white btn-block">Sign in</a>
</form>
</section>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer id="footer">
<div class="text-center padder clearfix">
<p>
<small>© first 2013, Mobile first web app framework base on Bootstrap</small><br><br>
<a href="#" class="btn btn-xs btn-circle btn-twitter"><i class="icon-twitter"></i></a>
<a href="#" class="btn btn-xs btn-circle btn-facebook"><i class="icon-facebook"></i></a>
<a href="#" class="btn btn-xs btn-circle btn-gplus"><i class="icon-google-plus"></i></a>
</p>
</div>
</footer>
<!-- / footer -->
<script src="js/jquery.min.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.js"></script>
<!-- app -->
<script src="js/app.js"></script>
<script src="js/app.plugin.js"></script>
<script src="js/app.data.js"></script>
</body>
</html>