Rev 348 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | tom | 1 | <?php |
2 | |||
3 | require '_taios.php'; |
||
4 | |||
5 | $page = new Taios_Page('Register'); |
||
6 | $page->drawHeader(); |
||
7 | $page->drawMiddle(); |
||
8 | |||
9 | ?> |
||
10 | |||
11 | <p class="bold">Here you can create an account with Tim32.</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="register-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">Repeat Password: </td> |
||
35 | <td><input type="password" name="password2" /></td> |
||
36 | </tr> |
||
37 | <tr> |
||
38 | <td class="bold">Email Address</td>: </td> |
||
39 | <td><input type="text" name="email" /></td> |
||
40 | </tr> |
||
41 | <tr> |
||
42 | <td class="bold">Name</td>: </td> |
||
43 | <td><input type="text" name="name" /></td> |
||
44 | </tr> |
||
45 | <tr> |
||
46 | <td class="bold"></td> |
||
47 | <td><input type="submit" value="Register" /></td> |
||
48 | </tr> |
||
49 | </table> |
||
50 | </form> |
||
51 | |||
52 | <?php |
||
53 | |||
54 | $page->drawFooter(); |
||
55 | |||
56 | ?> |