This repository was archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathform.html
More file actions
45 lines (38 loc) · 1.27 KB
/
form.html
File metadata and controls
45 lines (38 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel=stylesheet type=text/css href="css/bootstrap.css">
<link rel=stylesheet type=text/css href="css/custom.css">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body class="register">
<form action="/s/register" method="POST">
<div class="row">
<div class="col-md-2">
<label class="control-label">Username</label>
</div>
<div class="col-md-10">
<div class="controls">
<input name="username" type="text" placeholder="Your username..." class="form-control" />
<p class="help-block">Your username identifies you on the warzone.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-2">
<label class="control-label">Browser generated key</label>
</div>
<div class="col-md-10">
<keygen name="pubkey">
<p class="help-block">This public/private keypair will be generated by your browser, the public key will be sent as part of the registration form
while the private key will not leave your browser.</p>
</div>
</div>
<div class="footer">
<input type="submit" class="btn btn-primary" value="Register">
</div>
</form>
</body>
</html>