-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
84 lines (81 loc) · 4.12 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>
<!--[if lt IE 7]> <html class="no-js sidebar-large lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js sidebar-large lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js sidebar-large lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js sidebar-large"> <!--<![endif]-->
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<!-- BEGIN META SECTION -->
<meta charset="utf-8">
<title>EvalMetrics - Admin</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="" name="description" />
<meta content="themes-lab" name="author" />
<!-- END META SECTION -->
<!-- BEGIN MANDATORY STYLE -->
<link href="assets/css/icons/icons.min.css" rel="stylesheet">
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/plugins.min.css" rel="stylesheet">
<link href="assets/css/style.min.css" rel="stylesheet">
<!-- END MANDATORY STYLE -->
<!-- BEGIN PAGE LEVEL STYLE -->
<link href="assets/css/animate-custom.css" rel="stylesheet">
<!-- END PAGE LEVEL STYLE -->
<script src="assets/plugins/modernizr/modernizr-2.6.2-respond-1.1.0.min.js"></script>
</head>
<body class="login fade-in" data-page="signup">
<!-- START SIGNUP BOX -->
<div class="container" id="login-block">
<div class="row">
<div class="col-sm-6 col-md-4 col-sm-offset-3 col-md-offset-4">
<div class="login-box clearfix animated flipInY">
<div class="page-icon animated bounceInDown">
<img src="assets/img/account/register-icon.png" alt="Register icon" />
</div>
<div class="login-logo">
<a href="#">
<img src="assets/img/account/login-logo.png" alt="Company Logo" />
</a>
</div>
<hr>
<div class="login-form">
<!-- Start Error box -->
<div class="alert alert-danger hide">
<button type="button" class="close" data-dismiss="alert">×</button>
<h4>Error!</h4>
Your Error Message goes here
</div>
<!-- End Error box -->
<form action="#" method="get">
<input type="text" placeholder="Name" class="input-field" required/>
<input type="email" placeholder="E-mail" class="input-field" required/>
<input type="password" placeholder="Password" class="input-field" required/>
<input type="password" placeholder="Confirm Password" class="input-field" required/>
<label class="checkbox">
<input type="checkbox" value="option1" required>I agree to something I will never read
</label>
<button type="submit" class="btn btn-login">Sign Up</button>
</form>
<div class="login-links">
<a href="password_forgot.html">Forgot password?</a>
<br>
<a href="login.html">Already have an account? <strong>Sign In</strong></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END SIGNUP BOX -->
<!-- BEGIN MANDATORY SCRIPTS -->
<script src="assets/plugins/jquery-1.11.js"></script>
<script src="assets/plugins/jquery-migrate-1.2.1.js"></script>
<script src="assets/plugins/jquery-ui/jquery-ui-1.10.4.min.js"></script>
<script src="assets/plugins/bootstrap/bootstrap.min.js"></script>
<!-- END MANDATORY SCRIPTS -->
<!-- BEGIN PAGE LEVEL SCRIPTS -->
<script src="assets/plugins/backstretch/backstretch.min.js"></script>
<script src="assets/js/account.js"></script>
<!-- END PAGE LEVEL SCRIPTS -->
</body>
</html>