root/branches/dsss-smi/index.php

Revision 488, 1.0 kB (checked in by Gregor, 2 years ago)

index.php: Added docs link.

Line 
1 <HTML><head><title>DSSS Source Management Interface</title></head>
2 <body>
3 <h1>Log In</h1>
4 <form action='menu.php' method='post'>
5 <table border=0>
6
7 <tr>
8 <td>Username:</td>
9 <td><input type='text' name='un'></td>
10 </tr>
11
12 <tr>
13 <td>Password:</td>
14 <td><input type='password' name='pw'></td>
15 </tr>
16
17 </table>
18
19 <input type='submit' value='Log In'>
20 </form>
21
22 <hr>
23
24 <h1>Register</h1>
25 <form action='reg.php' method='post'>
26 <table border=0>
27
28 <tr>
29 <td>Username:</td>
30 <td><input type='text' name='un'></td>
31 </tr>
32
33 <tr>
34 <td>Password:</td>
35 <td><input type='password' name='pw'></td>
36 </tr>
37
38 <tr>
39 <td>Password (again):</td>
40 <td><input type='password' name='pw2'></td>
41 </tr>
42
43 </table>
44
45 <input type='submit' value='Register'>
46 </form>
47
48 <hr>
49
50 <?PHP
51 if (file_exists("results.html")) {
52 ?>
53 <a href='results.html'>Results of DSSS test builds</a><br>
54 <?PHP
55 }
56 if (file_exists("docs")) {
57 ?>
58 <a href='docs/'>Documentation for packages installable via the DSSS net feature</a><br>
59 <?PHP
60 }
61 ?>
62 </body>
63 </HTML>
Note: See TracBrowser for help on using the browser.