chiark / gitweb /
fix about ... page
[disorder] / templates / login.tmpl
... / ...
CommitLineData
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2<!--
3This file is part of DisOrder.
4Copyright (C) 2007, 2008 Richard Kettlewell
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@stdhead{login}
24 </head>
25 <body>
26@stdmenu{login}
27 <h1>@label:login.title@</h1>
28
29 @if{@ne{@label:error@}{error}@}{
30 @#{error reporting from some earlier operation}@
31 <div class=error>
32 <p class=error>@label{error.@label:error@}@</p>
33 </div>
34 }@
35
36 @if{@ne{@label:status@}{status}@}{
37 @#{some action succeeded}@
38 <div class=loginstatus>
39 <p>@label{login.@label:status@}@</p>
40 </div>
41 }@
42
43 @if{@eq{@user@}{guest}@}{
44 @#{guest user, allow login and registration}@
45 <h2>Existing users</h2>
46
47 <p>If you have a username, use this form to log in.</p>
48
49 <form class=login action="@url@" method=POST
50 enctype="multipart/form-data" accept-charset=utf-8>
51 <table class=login>
52 <tr>
53 <td>@label:login.username@</td>
54 <td>
55 <input class=username name=username type=text size=32
56 value="@arg:username@">
57 </td>
58 </tr>
59 <tr>
60 <td>@label:login.password@</td>
61 <td>
62 <input class=password name=password type=password value=""
63 size=32>
64 </td>
65 </tr>
66 <tr>
67 <td colspan=2>
68 <button class=login name=button type=submit>
69 @label:login.login@
70 </button>
71 </td>
72 </tr>
73 </table>
74 <input name=action type=hidden value=login>
75 <input name=back type=hidden value="@arg:back@">
76 </form>
77
78 <p>If you've forgotten your password, use this form to request an
79 email reminder. A reminder can only be sent if you registered with
80 your email address, and if a reminder has been sent too recently
81 then it won't be possible to send one.</p>
82
83 <form class=reminder action="@url@" method=POST
84 enctype="multipart/form-data" accept-charset=utf-8>
85 <table class=login>
86 <tr>
87 <td>@label:login.username@</td>
88 <td>
89 <input class=username name=username type=text size=32
90 value="@arg:username@">
91 </td>
92 </tr>
93 <tr>
94 <td colspan=2>
95 <button class=login name=button type=submit>
96 @label:login.reminder@
97 </button>
98 </td>
99 </tr>
100 </table>
101 <input name=action type=hidden value=reminder>
102 </form>
103
104 @right{register}{
105 <h2>New Users</h2>
106
107 <p>If you do not have a login enter a username, a password and your
108 email address here. You will be sent an email containing a URL,
109 which you must visit to activate your login before you can use
110 it.<p>
111
112 <form class=register action="@url@" method=POST
113 enctype="multipart/form-data" accept-charset=utf-8>
114 <table class=register>
115 <tr>
116 <td>@label:login.username@</td>
117 <td>
118 <input class=username name=username type=text size=32
119 value="">
120 </td>
121 <td class=extra>@label:login.registerusernameextra@</td>
122 </tr>
123 <tr>
124 <td>@label:login.email@</td>
125 <td>
126 <input class=email name=email type=text size=32
127 value="">
128 </td>
129 <td class=extra>@label:login.registeremailextra@</td>
130 </tr>
131 <tr>
132 <td>@label:login.password1@</td>
133 <td>
134 <input class=password name=password1 type=password size=32
135 value="">
136 </td>
137 <td class=extra>@label:login.registerpassword1extra@</td>
138 </tr>
139 <tr>
140 <td>@label:login.password2@</td>
141 <td>
142 <input class=password name=password2 type=password size=32
143 value="">
144 </td>
145 <td class=extra>@label:login.registerpassword2extra@</td>
146 </tr>
147 <tr>
148 <td colspan=3>
149 <button class=register name=button>
150 @label:login.register@
151 </button>
152 </td>
153 </tr>
154 </table>
155 <input name=action type=hidden value=register>
156 </form>}@
157 }{
158 @#{not the guest user, allow change of details and logout}@
159
160 <h2>Logged in as @user@</h2>
161
162 <form class=logout action="@url@" method=POST
163 enctype="multipart/form-data" accept-charset=utf-8>
164 <div class=logout>
165 <button class=logout name=submit type=submit>
166 @label:login.logout@
167 </button>
168 </div>
169 <input name=action type=hidden value=logout>
170 </form>
171
172 <p>Use this form to change your email address and/or password.</p>
173
174 <form class=edituser action="@url@" method=POST
175 enctype="multipart/form-data" accept-charset=utf-8>
176 <table class=edituser>
177 <tr>
178 <td>@label:login.email@</td>
179 <td>
180 <input class=email name=email type=text size=32
181 value="@userinfo:email@">
182 </td>
183 <td class=extra>@label:login.edituseremailextra@</td>
184 </tr>
185 <tr>
186 <td>@label:login.newpassword@</td>
187 <td>
188 <input class=password name=changepassword1 type=password size=32
189 value="">
190 </td>
191 <td class=extra>@label:login.edituserpassword1extra@</td>
192 </tr>
193 <tr>
194 <td>@label:login.newpassword@</td>
195 <td>
196 <input class=password name=changepassword2 type=password size=32
197 value="">
198 </td>
199 <td class=extra>@label:login.edituserpassword2extra@</td>
200 </tr>
201 <tr>
202 <td colspan=3>
203 <button class=edituser name=submit type=submit>
204 @label:login.edituser@
205 </button>
206 </td>
207 </tr>
208 </table>
209 <input name=action type=hidden value=edituser>
210 </form>
211
212 }@
213
214@credits
215 </body>
216</html>
217@discard{
218Local variables:
219mode:sgml
220sgml-always-quote-attributes:nil
221sgml-indent-step:1
222sgml-indent-data:t
223indent-tabs-mode:nil
224fill-column:79
225End:
226}@#