chiark / gitweb /
Half way through rewriting web interface. Don't even think about
[disorder] / templates / login.html
diff --git a/templates/login.html b/templates/login.html
deleted file mode 100644 (file)
index 723b6af..0000000
+++ /dev/null
@@ -1,226 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
-<!--
-This file is part of DisOrder.
-Copyright (C) 2007, 2008 Richard Kettlewell
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
--->
-<html>
- <head>
-@include:stdhead@
-  <title>@label:login.title@</title>
- </head>
- <body>
-@include{topbar}@
-   <h1>@label:login.title@</h1>
-
-   @if{@ne{@label:error@}{error}@}{
-   @#{error reporting from some earlier operation}@
-   <div class=error>
-     <p class=error>@label{error.@label:error@}@</p>
-   </div>
-   }@
-
-   @if{@ne{@label:status@}{status}@}{
-   @#{some action succeeded}@
-   <div class=loginstatus>
-     <p>@label{login.@label:status@}@</p>
-   </div>
-   }@
-
-   @if{@eq{@user@}{guest}@}{
-   @#{guest user, allow login and registration}@
-   <h2>Existing users</h2>
-
-   <p>If you have a username, use this form to log in.</p>
-
-   <form class=login action="@url@" method=POST
-         enctype="multipart/form-data" accept-charset=utf-8>
-     <table class=login>
-       <tr>
-         <td>@label:login.username@</td>
-         <td>
-           <input class=username name=username type=text size=32
-                 value="@arg:username@">
-         </td>
-       </tr>
-       <tr>
-         <td>@label:login.password@</td>
-         <td>
-           <input class=password name=password type=password value=""
-                  size=32>
-         </td>
-       </tr>
-       <tr>
-         <td colspan=2>
-           <button class=login name=button type=submit>
-             @label:login.login@
-           </button>
-         </td>
-       </tr>
-     </table>
-     <input name=action type=hidden value=login>
-     <input name=back type=hidden value="@arg:back@">
-   </form>
-
-   <p>If you've forgotten your password, use this form to request an
-   email reminder.  A reminder can only be sent if you registered with
-   your email address, and if a reminder has been sent too recently
-   then it won't be possible to send one.</p>
-
-   <form class=reminder action="@url@" method=POST
-         enctype="multipart/form-data" accept-charset=utf-8>
-     <table class=login>
-       <tr>
-         <td>@label:login.username@</td>
-         <td>
-           <input class=username name=username type=text size=32
-                 value="@arg:username@">
-         </td>
-       </tr>
-       <tr>
-         <td colspan=2>
-           <button class=login name=button type=submit>
-             @label:login.reminder@
-           </button>
-         </td>
-       </tr>
-     </table>
-     <input name=action type=hidden value=reminder>
-   </form>
-
-   @right{register}{
-   <h2>New Users</h2>
-
-   <p>If you do not have a login enter a username, a password and your
-   email address here.  You will be sent an email containing a URL,
-   which you must visit to activate your login before you can use
-   it.<p>
-
-   <form class=register action="@url@" method=POST
-         enctype="multipart/form-data" accept-charset=utf-8>
-     <table class=register>
-       <tr>
-         <td>@label:login.username@</td>
-         <td>
-           <input class=username name=username type=text size=32
-                 value="">
-         </td>
-         <td class=extra>@label:login.registerusernameextra@</td>
-       </tr>
-       <tr>
-         <td>@label:login.email@</td>
-         <td>
-           <input class=email name=email type=text size=32
-                  value="">
-         </td>
-         <td class=extra>@label:login.registeremailextra@</td>
-       </tr>
-       <tr>
-         <td>@label:login.password1@</td>
-         <td>
-           <input class=password name=password1 type=password size=32
-                 value="">
-         </td>
-         <td class=extra>@label:login.registerpassword1extra@</td>
-       </tr>
-       <tr>
-         <td>@label:login.password2@</td>
-         <td>
-           <input class=password name=password2 type=password size=32
-                 value="">
-         </td>
-         <td class=extra>@label:login.registerpassword2extra@</td>
-       </tr>
-       <tr>
-         <td colspan=3>
-           <button class=register name=button>
-             @label:login.register@
-           </button>
-         </td>
-       </tr>
-     </table>
-     <input name=action type=hidden value=register>
-   </form>}@
-   }{
-   @#{not the guest user, allow change of details and logout}@
-
-   <h2>Logged in as @user@</h2>
-
-   <form class=logout action="@url@" method=POST
-         enctype="multipart/form-data" accept-charset=utf-8>
-     <div class=logout>
-       <button class=logout name=submit type=submit>
-         @label:login.logout@
-       </button>
-     </div>
-     <input name=action type=hidden value=logout>
-   </form>
-
-   <p>Use this form to change your email address and/or password.</p>
-
-   <form class=edituser action="@url@" method=POST
-         enctype="multipart/form-data" accept-charset=utf-8>
-     <table class=edituser>
-       <tr>
-         <td>@label:login.email@</td>
-         <td>
-           <input class=email name=email type=text size=32
-                 value="@userinfo:email@">
-         </td>
-         <td class=extra>@label:login.edituseremailextra@</td>
-       </tr>
-       <tr>
-         <td>@label:login.newpassword@</td>
-         <td>
-           <input class=password name=changepassword1 type=password size=32
-                 value="">
-         </td>
-         <td class=extra>@label:login.edituserpassword1extra@</td>
-       </tr>
-       <tr>
-         <td>@label:login.newpassword@</td>
-         <td>
-           <input class=password name=changepassword2 type=password size=32
-                 value="">
-         </td>
-         <td class=extra>@label:login.edituserpassword2extra@</td>
-       </tr>
-       <tr>
-         <td colspan=3>
-           <button class=edituser name=submit type=submit>
-             @label:login.edituser@
-           </button>
-         </td>
-       </tr>
-     </table>
-     <input name=action type=hidden value=edituser>
-   </form>
-
-   }@
-
-@include{topbarend}@
- </body>
-</html>
-@@
-<!--
-Local variables:
-mode:sgml
-sgml-always-quote-attributes:nil
-sgml-indent-step:1
-sgml-indent-data:t
-End:
--->