Added a comma after each msgnum exported. The parser was globbing them all together...
[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         include "ctdlheader.php";
11         bbs_page_header();
12
13         echo ctdl_mesg("hello");
14 ?>
15
16         <div align=center>
17         <form action="do_login.php" method="POST">
18
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>
24
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>
30
31         </table>
32         </form>
33         </div>
34
35 <?PHP
36         bbs_page_footer();
37 ?>