chiark / gitweb /
Merge from 3.0 branch
[disorder] / templates / login.html
CommitLineData
fdf98378 1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2<!--
3This file is part of DisOrder.
5aff007d 4Copyright (C) 2007, 2008 Richard Kettlewell
fdf98378 5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19USA
20-->
21<html>
22 <head>
23@include:stdhead@
24 <title>@label:login.title@</title>
25 </head>
26 <body>
e12da4d9 27@include{topbar}@
3225872d 28 <h1>@label:login.title@</h1>
fdf98378 29
30 @if{@ne{@label:error@}{error}@}{
31 @#{error reporting from some earlier operation}@
328248ba 32 <div class=error>
33 <p class=error>@label{error.@label:error@}@</p>
34 </div>
fdf98378 35 }@
36
ac152d06 37 @if{@ne{@label:status@}{status}@}{
38 @#{some action succeeded}@
328248ba 39 <div class=loginstatus>
3225872d 40 <p>@label{login.@label:status@}@</p>
328248ba 41 </div>
fdf98378 42 }@
43
44 @if{@eq{@user@}{guest}@}{
45 @#{guest user, allow login and registration}@
46 <h2>Existing users</h2>
47
48 <p>If you have a username, use this form to log in.</p>
49
50 <form class=login action="@url@" method=POST
51 enctype="multipart/form-data" accept-charset=utf-8>
52 <table class=login>
53 <tr>
54 <td>@label:login.username@</td>
55 <td>
968f044a 56 <input class=username name=username type=text size=32
57 value="@arg:username@">
fdf98378 58 </td>
59 </tr>
60 <tr>
61 <td>@label:login.password@</td>
968f044a 62 <td>
63 <input class=password name=password type=password value=""
64 size=32>
65 </td>
66 </tr>
67 <tr>
6207d2f3 68 <td colspan=2>
bf9df44a 69 <button class=login name=button type=submit>
fdf98378 70 @label:login.login@
71 </button>
72 </td>
73 </tr>
74 </table>
bf9df44a 75 <input name=action type=hidden value=login>
fdf98378 76 <input name=back type=hidden value="@arg:back@">
77 </form>
78
6207d2f3 79 <p>If you've forgotten your password, use this form to request an
80 email reminder. A reminder can only be sent if you registered with
81 your email address, and if a reminder has been sent too recently
82 then it won't be possible to send one.</p>
83
84 <form class=reminder action="@url@" method=POST
85 enctype="multipart/form-data" accept-charset=utf-8>
86 <table class=login>
87 <tr>
88 <td>@label:login.username@</td>
89 <td>
90 <input class=username name=username type=text size=32
91 value="@arg:username@">
92 </td>
93 </tr>
94 <tr>
95 <td colspan=2>
96 <button class=login name=button type=submit>
97 @label:login.reminder@
98 </button>
99 </td>
100 </tr>
101 </table>
102 <input name=action type=hidden value=reminder>
6207d2f3 103 </form>
104
d2777468 105 @right{register}{
fdf98378 106 <h2>New Users</h2>
107
108 <p>If you do not have a login enter a username, a password and your
109 email address here. You will be sent an email containing a URL,
110 which you must visit to activate your login before you can use
111 it.<p>
112
113 <form class=register action="@url@" method=POST
114 enctype="multipart/form-data" accept-charset=utf-8>
115 <table class=register>
116 <tr>
117 <td>@label:login.username@</td>
118 <td>
968f044a 119 <input class=username name=username type=text size=32
120 value="">
fdf98378 121 </td>
968f044a 122 <td class=extra>@label:login.registerusernameextra@</td>
fdf98378 123 </tr>
124 <tr>
125 <td>@label:login.email@</td>
126 <td>
968f044a 127 <input class=email name=email type=text size=32
128 value="">
fdf98378 129 </td>
968f044a 130 <td class=extra>@label:login.registeremailextra@</td>
131 </tr>
132 <tr>
133 <td>@label:login.password1@</td>
134 <td>
135 <input class=password name=password1 type=password size=32
136 value="">
137 </td>
138 <td class=extra>@label:login.registerpassword1extra@</td>
139 </tr>
140 <tr>
141 <td>@label:login.password2@</td>
142 <td>
143 <input class=password name=password2 type=password size=32
144 value="">
145 </td>
146 <td class=extra>@label:login.registerpassword2extra@</td>
fdf98378 147 </tr>
148 <tr>
6207d2f3 149 <td colspan=3>
bf9df44a 150 <button class=register name=button>
ac152d06 151 @label:login.register@
fdf98378 152 </button>
153 </td>
154 </tr>
155 </table>
bf9df44a 156 <input name=action type=hidden value=register>
d2777468 157 </form>}@
fdf98378 158 }{
159 @#{not the guest user, allow change of details and logout}@
160
161 <h2>Logged in as @user@</h2>
162
968f044a 163 <form class=logout action="@url@" method=POST
164 enctype="multipart/form-data" accept-charset=utf-8>
165 <div class=logout>
bf9df44a 166 <button class=logout name=submit type=submit>
968f044a 167 @label:login.logout@
168 </button>
169 </div>
bf9df44a 170 <input name=action type=hidden value=logout>
968f044a 171 </form>
fdf98378 172
173 <p>Use this form to change your email address and/or password.</p>
174
f230d1d6 175 <form class=edituser action="@url@" method=POST
fdf98378 176 enctype="multipart/form-data" accept-charset=utf-8>
177 <table class=edituser>
178 <tr>
179 <td>@label:login.email@</td>
180 <td>
968f044a 181 <input class=email name=email type=text size=32
182 value="@userinfo:email@">
fdf98378 183 </td>
968f044a 184 <td class=extra>@label:login.edituseremailextra@</td>
185 </tr>
186 <tr>
187 <td>@label:login.newpassword@</td>
188 <td>
189 <input class=password name=changepassword1 type=password size=32
190 value="">
191 </td>
192 <td class=extra>@label:login.edituserpassword1extra@</td>
193 </tr>
194 <tr>
195 <td>@label:login.newpassword@</td>
196 <td>
197 <input class=password name=changepassword2 type=password size=32
198 value="">
199 </td>
200 <td class=extra>@label:login.edituserpassword2extra@</td>
fdf98378 201 </tr>
202 <tr>
6207d2f3 203 <td colspan=3>
bf9df44a 204 <button class=edituser name=submit type=submit>
fdf98378 205 @label:login.edituser@
206 </button>
207 </td>
208 </tr>
209 </table>
bf9df44a 210 <input name=action type=hidden value=edituser>
fdf98378 211 </form>
212
fdf98378 213 }@
214
e12da4d9 215@include{topbarend}@
fdf98378 216 </body>
217</html>
218@@
219<!--
220Local variables:
221mode:sgml
222sgml-always-quote-attributes:nil
223sgml-indent-step:1
224sgml-indent-data:t
225End:
226-->