-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
115 lines (97 loc) · 3.94 KB
/
test.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
<!DOCTYPE html>
<html>
<head>
<title>RecipeBook</title>
<!-- Language support -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Viewport mobile tag for sensible mobile support -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2" />
<!--
Stylesheets
========================
-->
<link rel="stylesheet" type="text/css" href="assets/styles/normalize.min.css">
<link rel="stylesheet" type="text/css" href="assets/styles/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/styles/app.css">
<link rel="stylesheet" type="text/css" href="assets/styles/loading.css">
</head>
<body>
<div id="app-container" class="expand-all">
<div id="main-container" class="expand-all">
<div class="center-container expand-all">
<section class="center form-login">
<header>
<h1 class="form-header"><img src="assets/images/[email protected]" style="width:250px;"/> <small>Register</small> </h1>
</header>
<form id="register" role="form" action="/user/create">
<div class="form-group">
<label id="labelEmail" for="inputEmail">
Email address
<%if(typeof error != 'undefined'){ %>
<small>
<%= error %>
</small>
<% } %>
</label>
<div class="input-group">
<span class="input-group-addon">
<strong>@</strong>
</span>
<input name="email" type="email" class="form-control input-lg" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="form-group">
<label id="labelNickname" for="inputEmail">Nickname</label>
<div class="input-group">
<span class="input-group-addon">
<span class="glyphicon glyphicon-user">
</span>
</span>
<input name="nickname" type="text" class="form-control input-lg" id="inputNickname" placeholder="Nickname">
</div>
</div>
<div class="form-group">
<label id="labelPassword" for="inputPassword">Password</label>
<div class="input-group">
<span class="input-group-addon">
<span class="glyphicon glyphicon-link">
</span>
</span>
<input type="password" class="form-control input-lg" id="inputPassword" placeholder="Password">
</div>
<br/>
<div class="input-group">
<span class="input-group-addon">
<span class="glyphicon glyphicon-link">
</span>
</span>
<input name="password" type="password" class="form-control input-lg" id="inputConfirmPassword" placeholder="Confirm password">
</div>
</div>
<div class="checkbox">
<label>
<input id="checkboxAccept" type="checkbox"> Accept terms & conditions.
</label>
<label id="labelAccept">
</label>
</div>
<button type="submit" class="btn btn-primary btn-lg btn-block">Register</button>
<a href="/views/settings/language.html" class="btn btn-default btn-lg btn-block">Back</a>
</form>
</section>
</div>
<div>
</div>
<!-- listen on socket.io for incoming messages -->
<script type="text/javascript" src="js/app.js"></script>
<!-- jQuery -->
<script type="text/javascript" src="assets/js/jquery-1.10.2.min.js"></script>
<!-- Bootstrap -->
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
<!-- Happy -->
<script type="text/javascript" src="assets/js/happy.js"></script>
<script type="text/javascript" src="assets/js/happy.methods.js"></script>
<!-- Your scripts here? -->
<!-- Your scripts here? -->
</body>
</html>