blob: 08c9e993a3f6c35126b277cf3700c2c7211a73c1 (
plain)
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
149
150
151
152
153
154
155
156
|
[[ if (! logged_in) { ]]
<div class="mediaDrawer fixed animate signin">
<span class="close">X</span>
<div class="box">
<form id="signIn" method="post">
<input type="hidden" name="_csrf" value="[[- token ]]">
<a href="/auth/facebook" class="facebook"><b class="ion-social-facebook"></b><span>Sign in with Facebook</span></a>
<b class="signin-tagline">– or with your email –</b>
<li>
<label class="description" for="usernameInput">Username:</label>
<div>
<input id="usernameInput" name="username" class="element text medium" type="text" maxlength="255" value=""/>
</div>
</li>
<li>
<label class="description" for="passwordInput">Password:</label>
<div>
<input id="passwordInput" name="password" class="element text medium" type="password" maxlength="255" value=""/>
</div>
</li>
<li class="buttons">
<input id="saveForm" class="button_text" type="submit" value="Submit" />
</li>
<div class="errors">
<div>There was a problem with your submission:</div>
<div class="errorList"></div>
</div>
<br><br>
<a data-role="show-signup-modal" href="#">Make a new account</a><br>
<a data-role="forgot-password" href="#">Forgot your password?</a>
</form>
</div>
</div>
<div class="mediaDrawer fixed animate signup">
<span class="close">X</span>
<div class="box">
<form id="signUp" method="post">
<input type="hidden" name="_csrf" value="[[- token ]]">
<a href="/auth/facebook" class="facebook"><b class="ion-social-facebook"></b><span>Sign up with Facebook</span></a>
<b class="signin-tagline">– or with your email –</b>
<li>
<label class="description" for="usernameInput">Username:</label>
<div>
<input id="usernameInput" name="username" class="element text medium" type="text" maxlength="255">
</div>
</li>
<li>
<label class="description" for="emailInput">Email:</label>
<div>
<input id="emailInput" name="email" class="element text medium" type="text" maxlength="255">
</div>
</li>
<li>
<label class="description" for="passwordInput1">Password:</label>
<div>
<input id="passwordInput1" name="password" class="element text medium" type="password" maxlength="255">
</div>
</li>
<li>
<label class="description" for="passwordInput2">Again!</label>
<div>
<input id="passwordInput2" class="element text medium" type="password" maxlength="255">
</div>
</li>
<li class="buttons">
<input id="saveForm" class="button_text" type="submit" value="Submit" />
</li>
<div class="errors">
<div>There was a problem with your submission:</div>
<div class="errorList"></div>
</div>
</form>
</div>
</div>
<div class="mediaDrawer fixed animate passwordForgot">
<span class="close">X</span>
<div class="box">
<form id="forgotPw" method="post" autocomplete="off">
<input type="hidden" name="_csrf" value="[[- token ]]">
<li>
Forgot your password? Enter the email address you used to sign up
and we can reset it for you.
</li>
<li>
<label class="description" for="emailInput">Email:</label>
<div>
<input id="emailInput" name="email" class="element text medium" type="text" maxlength="255" value="" autocomplete="off" spellcheck="false">
</div>
</li>
<li class="buttons">
<input id="saveForm" class="bb button" type="submit" value="Submit">
</li>
<div class="errors">
<div>There was a problem with your submission:</div>
<div class="errorList"></div>
</div>
</form>
</div>
</div>
<div class="mediaDrawer fixed animate passwordReset">
<div class="box">
<form id="resetPassword" method="post">
<input type="hidden" name="_csrf" value="[[- token ]]">
<input type="hidden" name="nonce">
Please reset your password.
<br><br>
<li>
<label class="description" for="passwordInput1">Password:</label>
<div>
<input id="passwordInput1" name="password" class="element text medium" type="password" maxlength="255">
</div>
</li>
<li>
<label class="description" for="passwordInput2">Again!</label>
<div>
<input id="passwordInput2" class="element text medium" type="password" maxlength="255">
</div>
</li>
<li class="buttons">
<input id="saveForm" class="bb button" type="submit" value="Submit" />
</li>
<div class="errors">
<div class="errorList"></div>
</div>
</form>
</div>
</div>
<div class="mediaDrawer fixed animate usernameTaken">
<div class="box">
<form id="usernameTaken" method="post" autocomplete="off">
We're sorry, the username <b id="usernameThatIsTaken"></b> is already being used.
<br><br>
Please choose another username.
<br><br>
<li>
<label class="description" for="usernameInput">Username:</label>
<div>
<input id="usernameInput" name="username" class="element text medium" type="text" maxlength="255" value="" autocomplete="off" spellcheck="false">
</div>
</li>
<li class="buttons">
<input id="saveForm" class="bb button" type="submit" value="Submit">
</li>
<div class="errors">
<div class="errorList"></div>
</div>
</form>
</div>
</div>
[[ } ]]
|