forked from ithoq/MagicTheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pages-signup-alt.html
140 lines (110 loc) · 4.55 KB
/
pages-signup-alt.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<!--[if IE 8]> <html class="ie8"> <![endif]-->
<!--[if IE 9]> <html class="ie9 gt-ie8"> <![endif]-->
<!--[if gt IE 9]><!--> <html class="gt-ie8 gt-ie9 not-ie"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Sign Up - LanderApp</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<!-- Open Sans font from Google CDN -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,600,700,300&subset=latin" rel="stylesheet" type="text/css">
<!-- LanderApp's stylesheets -->
<link href="assets/stylesheets/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="assets/stylesheets/landerapp.min.css" rel="stylesheet" type="text/css">
<link href="assets/stylesheets/pages.min.css" rel="stylesheet" type="text/css">
<link href="assets/stylesheets/rtl.min.css" rel="stylesheet" type="text/css">
<link href="assets/stylesheets/themes.min.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="assets/javascripts/ie.min.js"></script>
<![endif]-->
</head>
<!-- 1. $BODY ======================================================================================
Body
Classes:
* 'theme-{THEME NAME}'
* 'right-to-left' - Sets text direction to right-to-left
-->
<body class="theme-default page-signup-alt">
<!-- Demo script --> <script src="assets/demo/demo.js"></script> <!-- / Demo script -->
<div class="signup-header">
<a href="index.html" class="logo">
<strong>Lander</strong>App
</a> <!-- / .logo -->
<a href="pages-signin-alt.html" class="btn btn-primary">Sign In</a>
</div> <!-- / .header -->
<h1 class="form-header">Create your Account</h1>
<!-- Form -->
<form action="index.html" id="signup-form_id" class="panel">
<div class="form-group">
<input type="text" name="signup_name" id="name_id" class="form-control input-lg" placeholder="Full name">
</div>
<div class="form-group">
<input type="text" name="signup_email" id="email_id" class="form-control input-lg" placeholder="E-mail">
</div>
<div class="form-group">
<input type="text" name="signup_username" id="username_id" class="form-control input-lg" placeholder="Username">
</div>
<div class="form-group">
<input type="password" name="signup_password" id="password_id" class="form-control input-lg" placeholder="Password">
</div>
<div class="form-group" style="margin-top: 20px;margin-bottom: 20px;">
<label class="checkbox-inline">
<input type="checkbox" name="signup_confirm" class="px" id="confirm_id">
<span class="lbl">I agree with the <a href="#" target="_blank">Terms and Conditions</a></span>
</label>
</div>
<div class="form-actions">
<input type="submit" value="Create an account" class="btn btn-primary btn-lg btn-block">
</div>
</form>
<!-- / Form -->
<div class="signup-with">
<div class="header">or sign up with</div>
<a href="index.html" class="btn btn-lg btn-facebook rounded"><i class="fa fa-facebook"></i></a>
<a href="index.html" class="btn btn-lg btn-info rounded"><i class="fa fa-twitter"></i></a>
<a href="index.html" class="btn btn-lg btn-danger rounded"><i class="fa fa-google-plus"></i></a>
</div>
<!-- Get jQuery from Google CDN -->
<!--[if !IE]> -->
<script type="text/javascript"> window.jQuery || document.write('<script src="assets/javascripts/jquery.min.js">'+"<"+"/script>"); </script>
<!-- <![endif]-->
<!--[if lte IE 9]>
<script type="text/javascript"> window.jQuery || document.write('<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">'+"<"+"/script>"); </script>
<![endif]-->
<!-- LanderApp's javascripts -->
<script src="assets/javascripts/bootstrap.min.js"></script>
<script src="assets/javascripts/landerapp.min.js"></script>
<script type="text/javascript">
window.LanderApp.start([
function () {
$("#signup-form_id").validate({ focusInvalid: true, errorPlacement: function () {} });
// Validate name
$("#name_id").rules("add", {
required: true,
minlength: 1
});
// Validate email
$("#email_id").rules("add", {
required: true,
email: true
});
// Validate username
$("#username_id").rules("add", {
required: true,
minlength: 3
});
// Validate password
$("#password_id").rules("add", {
required: true,
minlength: 6
});
// Validate confirm checkbox
$("#confirm_id").rules("add", {
required: true
});
}
]);
</script>
</body>
</html>