-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
84 lines (80 loc) · 2.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>React - Bootstrap Theme</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="css/compiled/theme.css">
<!-- javascript -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/bootstrap/bootstrap.min.js"></script>
<script src="js/theme.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body id="signup">
<div class="container">
<div class="row header">
<div class="col-md-12">
<h3 class="logo">
<a href="index.html">React</a>
</h3>
<h4>Set up your new account today.</h4>
<p>
30-day money-back guarantee that starts after your first payment.
</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="wrapper clearfix">
<div class="formy">
<div class="row">
<div class="col-md-12">
<form role="form">
<div class="form-group">
<label for="name">Your name</label>
<input type="text" class="form-control" id="name" />
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" />
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" />
</div>
<div class="checkbox">
<label>
<input type="checkbox"> You have read & agree to the
<a href="#">Terms of service</a>.
</label>
</div>
<div class="submit">
<a href="index.html" class="button-clear">
<span>Create my account</span>
</a>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="already-account">
Already have an account?
<a href="signin.html" data-toggle="popover" data-placement="top" data-content="Go to sign in!" data-trigger="manual">Sign in here</a>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
$(".already-account a").popover();
$(".already-account a").popover('show');
});
</script>
</body>
</html>