Rev 1 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
169 | tom | 1 | <?php |
2 | |||
3 | require '_taios.php'; |
||
4 | |||
5 | $page = new Taios_Page('Login'); |
||
6 | $page->drawHeader(); |
||
7 | $page->drawMiddle(); |
||
8 | |||
9 | ?> |
||
10 | |||
11 | <p class="bold">Here you can login to Tim32 using your Tim32 account.</p> |
||
12 | <br /> |
||
13 | |||
14 | <?php |
||
15 | |||
16 | if (isset($_GET['error'])) |
||
17 | { |
||
18 | $page->drawError($_GET['error'], false); |
||
19 | } |
||
20 | |||
21 | ?> |
||
22 | |||
23 | <form action="login-do.php" method="POST"> |
||
24 | <table> |
||
25 | <tr> |
||
26 | <td class="bold">Username: </td> |
||
27 | <td><input type="text" name="username" /></td> |
||
28 | </tr> |
||
29 | <tr> |
||
30 | <td class="bold">Password: </td> |
||
31 | <td><input type="password" name="password" /></td> |
||
32 | </tr> |
||
33 | <tr> |
||
34 | <td class="bold">Remember Me: </td> |
||
35 | <td><input type="checkbox" name="remember" value="yes" /></td> |
||
36 | </tr> |
||
37 | <tr> |
||
38 | <td class="bold"></td> |
||
39 | <td><input type="submit" value="Login" /></td> |
||
40 | </tr> |
||
41 | </table> |
||
42 | </form> |
||
43 | |||
44 | <?php |
||
45 | |||
46 | $page->drawFooter(); |
||
47 | |||
48 | ?> |