-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathAuthorize.html
More file actions
35 lines (34 loc) · 1.47 KB
/
Authorize.html
File metadata and controls
35 lines (34 loc) · 1.47 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
<html>
<head></head>
<body>
<wicket:extend>
<div class="grid_9 alpha">
<div class="auth grid_4 prefix_1 alpha" id="signin">
<h2 class="grid_4">Log In</h2>
<form wicket:id='login'>
<ul>
<li><label for="username">Username: </label><input id="username" type="text" wicket:id="username" /></li>
<li><label for="password">Password: </label><input id="password" type="password" wicket:id="password" /></li>
</ul>
<span wicket:id="loginerror">FAIL</span>
<br>
<input type="submit" value="Log In"/>
</form>
</div>
<div class="auth grid_4 omega" id="signup">
<h2 class="grid_4">Sign Up</h2>
<form wicket:id='signup'>
<ul>
<li><label for="new_username">New Username: </label><input id="new_username" type="text" wicket:id="new_username" /></li>
<li><label for="password1">Password: </label><input id="password1" type="password" wicket:id="password1" /></li>
<li><label for="password2">Repeat Password: </label><input id="password2" type="password" wicket:id="password2" /></li>
</ul>
<span wicket:id="regerror">FAIL AGAIN</span>
<br>
<input type="submit" value="Sign Up" />
</form>
</div>
</div>
</wicket:extend>
</body>
</html>