* Firmed up the login/logout process
[citadel.git] / ctdlphp / login.php
1 <?PHP
2
3 // $Id$
4 //
5 // Initial start page for PHP-based Citadel web sessions.
6 //
7 // Copyright (c) 2003 by Art Cancro <ajc@uncensored.citadel.org>
8 // This program is released under the terms of the GNU General Public License.
9 //
10
11         include "ctdlheader.php";
12         bbs_page_header();
13
14         ctdl_mesg("hello");
15 ?>
16
17         <div align=center>
18         <form action="do_login.php" method="POST">
19
20         <table border="0" cellspacing="5" cellpadding="5" BGCOLOR="#EEEEEE">
21                 <tr><td>User name:</td>
22                 <td><input type="text" name="name" maxlength="25"></td></tr>
23                 <tr><td>Password:</td>
24                 <td><input type="password" name="pass" maxlength="20"></td></tr>
25
26         <tr><td align=center COLSPAN=2>
27         <input type="submit" name="action" value="Login">
28         <input type="submit" name="action" value="New User">
29         <a href="logout.php">Exit</A>
30         </td></tr>
31
32         </table>
33         </form>
34         </div>
35
36 <?PHP
37         bbs_page_footer();
38 ?>
39