* Got login/logout working. Still need to redirect unloggedin sessions to
[citadel.git] / ctdlphp / login.php
1 <?PHP
2         include "ctdlheader.php";
3         bbs_page_header();
4
5         ctdl_mesg("hello");
6 ?>
7
8         <div align=center>
9         <form action="do_login.php" method="POST">
10
11         <table border="0" cellspacing="5" cellpadding="5" BGCOLOR="#EEEEEE">
12                 <tr><td>User name:</td>
13                 <td><input type="text" name="name" maxlength="25"></td></tr>
14                 <tr><td>Password:</td>
15                 <td><input type="password" name="pass" maxlength="20"></td></tr>
16
17         <tr><td align=center COLSPAN=2>
18         <input type="submit" name="action" value="Login">
19         <input type="submit" name="action" value="New User">
20         <input type="submit" name="action" value="Exit">
21         </td></tr>
22
23         </table>
24         </form>
25         </div>
26
27 <a href="page2.php">Page Two</a><BR>
28 <a href="page3.php">Page Three</a><BR>
29
30 <?PHP
31         bbs_page_footer();
32 ?>
33