-
Notifications
You must be signed in to change notification settings - Fork 223
/
register.html
78 lines (69 loc) · 2.94 KB
/
register.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Kertas – Register</title>
<link rel="icon" href="assets/img/favicon.ico">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- BEGIN CSS FRAMEWORK -->
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.min.css">
<!-- END CSS FRAMEWORK -->
<!-- BEGIN CSS PLUGIN -->
<link rel="stylesheet" href="assets/plugins/pace/pace-theme-minimal.css">
<!-- END CSS PLUGIN -->
<!-- BEGIN CSS TEMPLATE -->
<link rel="stylesheet" href="assets/css/main.css">
<!-- END CSS TEMPLATE -->
</head>
<body class="login">
<div class="outer">
<div class="middle">
<div class="inner">
<div class="row">
<!-- BEGIN BOX REGISTER -->
<div class="col-lg-12">
<h3 class="text-center login-title">New to this site? Register now</h3>
<div class="account-wall">
<img src="assets/img/logo.png" alt="">
<!-- BEGIN REGISTER FORM -->
<form name="register" action="login.html" class="form-login" role="form">
<input type="text" name="first_name" class="form-control small" placeholder="First name" autofocus>
<input type="text" name="last_name" class="form-control small" placeholder="Last name">
<input type="text" name="email" class="form-control" placeholder="Email" >
<input type="text" name="re_email" class="form-control" placeholder="Re-enter email" >
<input type="password" name="password" class="form-control" placeholder="Password">
<input type="password" name="re_password" class="form-control" placeholder="Re-enter Password">
<button class="btn btn-lg btn-primary btn-block" type="submit">Register</button>
<label class="pull-left"></label>
<a href="#" class="pull-right need-help">Need help?</a><span class="clearfix"></span>
</form>
<!-- END REGISTER FORM -->
</div>
<a href="login.html" class="text-center new-account">Already have an account?</a>
</div>
<!-- END BOX REGISTER -->
</div>
</div>
</div>
</div>
<!-- BEGIN JS FRAMEWORK -->
<script src="assets/plugins/jquery-2.1.0.min.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<!-- END JS FRAMEWORK -->
<!-- BEGIN JS PLUGIN -->
<script src="assets/plugins/pace/pace.min.js"></script>
<!-- END JS PLUGIN -->
</body>
</html>