forked from OpenUserJS/OpenUserJS.org
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathloginPage.html
More file actions
47 lines (47 loc) · 2.41 KB
/
Copy pathloginPage.html
File metadata and controls
47 lines (47 loc) · 2.41 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
<!DOCTYPE html>
<html>
<head>
<title>{{title}}</title>
{{> includes/head.html }}
</head>
<body>
{{> includes/header.html }}
<div class="container-fluid">
<div class="row">
<form action="/auth/" method="post" class="form-register">
<input type="hidden" name="redirectTo" value="{{{redirectTo}}" />
<h3>
Register
<span class="help-block small">Enter your sanitized unique name for our site to your preferred <a href="http://www.wikipedia.org/wiki/OAuth">OAuth</a>/<a href="http://www.wikipedia.org/wiki/OpenID">OpenID</a> service.</span>
</h3>
<noscript>
<div class="alert alert-danger small" role="alert">
<i class="fa fa-exclamation-triangle"></i> <strong>WARNING</strong>: The Username entered may include additional sanitizing for web friendly URLs and Userscript engine compatibility. If you wish to see the sanitization changes please eanble JavaScript and <a href="/register">start over</a>.
</div>
</noscript>
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-user fa-fw"></i></span>
<input class="form-control" type="text" name="username" value="{{wantname}}" placeholder="Username" spellcheck="false" autocomplete="off" autocorrect="off" autocapitalize="off">
<select name="auth" class="form-control">
{{#strategies}}
<option value="{{strat}}" {{#selected}}selected="selected"{{/selected}}>{{display}}</option>
{{/strategies}}
</select>
<span class="input-group-addon">
<button class="btn btn-info" type="submit" id="action">Next <i class="fa fa-sign-in fa-fw"></i></button>
</span>
</div>
<div class="alert alert-warning small" role="alert">
<i class="fa fa-exclamation-triangle"></i> <strong>CAUTION</strong>: The Username that you choose to register will be displayed to everyone. It is strongly recommended to <strong>not</strong> attempt to use an email address.
</div>
<ul class="nav nav-pills nav-justified">
<li><a href="/about/Privacy-Policy"><i class="fa fa-user-secret"></i> Privacy Policy</a></li>
<li><a href="/about/Terms-of-Service"><i class="fa fa-legal"></i> Terms of Service</a></li>
</ul>
</form>
</div>
</div>
{{> includes/footer.html }}
{{> includes/scripts/loginEcho.html }}
</body>
</html>