* The code which loads expire policies had been incompletely ported to strbuf, causin...
[citadel.git] / ctdlphp / login.php
blobffe793c70826569b49c428b7b68238b1c1e7cac2
1 <?PHP
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.
10 include "ctdlheader.php";
11 bbs_page_header();
13 echo ctdl_mesg("hello");
16 <div align=center>
17 <form action="do_login.php" method="POST">
19 <table border="0" cellspacing="5" cellpadding="5" BGCOLOR="#EEEEEE">
20 <tr><td>User name:</td>
21 <td><input type="text" name="user" maxlength="25"></td></tr>
22 <tr><td>Password:</td>
23 <td><input type="password" name="pass" maxlength="20"></td></tr>
25 <tr><td align=center COLSPAN=2>
26 <input type="submit" name="action" value="Login">
27 <input type="submit" name="action" value="New User">
28 <a href="logout.php">Exit</A>
29 </td></tr>
31 </table>
32 </form>
33 </div>
35 <?PHP
36 bbs_page_footer();