-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
148 lines (96 loc) · 4.19 KB
/
signup.php
File metadata and controls
148 lines (96 loc) · 4.19 KB
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
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Signup - Bootstrap Admin Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css" />
<link href="css/font-awesome.css" rel="stylesheet">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/pages/signin.css" rel="stylesheet" type="text/css">
<style>
#error-msg{ display:none }
#success-msg{ display:none }
</style>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="index.html">
Bootstrap Admin Template
</a>
<div class="nav-collapse">
<ul class="nav pull-right">
<li class="">
<a href="index.php" class="">
Already have an account? Login now
</a>
</li>
</ul>
</div><!--/.nav-collapse -->
</div> <!-- /container -->
</div> <!-- /navbar-inner -->
</div> <!-- /navbar -->
<div class="account-container register">
<div class="content clearfix">
<form name="sign-up-form" id="sign-up-form" method="post">
<h1>Signup for Free Account</h1>
<div class="alert" id="error-msg">
<button data-dismiss="alert" class="close" type="button">×</button>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>
<div class="alert alert-success" id="success-msg">
<button data-dismiss="alert" class="close" type="button">×</button>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>
<div class="login-fields">
<p>Create your free account:</p>
<div class="field">
<label for="firstname">First Name:</label>
<input type="text" id="firstname" name="first_name" placeholder="First Name" class="login" />
</div> <!-- /field -->
<div class="field">
<label for="lastname">Last Name:</label>
<input type="text" id="lastname" name="last_name" placeholder="Last Name" class="login" />
</div> <!-- /field -->
<div class="field">
<label for="email">Email Address:</label>
<input type="text" id="email" name="email" placeholder="Email" class="login"/>
</div> <!-- /field -->
<div class="field">
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Password" class="login"/>
</div> <!-- /field -->
<div class="field">
<label for="confirm_password">Confirm Password:</label>
<input type="password" id="cpassword" name="cpassword" placeholder="Confirm Password" class="login"/>
</div> <!-- /field -->
</div> <!-- /login-fields -->
<div class="login-actions">
<span class="login-checkbox">
<input id="Field" name="aggree" value="1" type="checkbox" class="field login-checkbox" tabindex="4" />
<label class="choice" for="Field">Agree with the Terms & Conditions.</label>
</span>
<button class="button btn btn-primary btn-large" id="sign-up">Register</button>
</div> <!-- .actions -->
</form>
</div> <!-- /content -->
</div> <!-- /account-container -->
<!-- Text Under Box -->
<div class="login-extra">
Already have an account? <a href="index.php">Login to your account</a>
</div> <!-- /login-extra -->
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/signup.js"></script>
</body>
</html>