]> code.citadel.org Git - citadel.git/commitdiff
* Cosmetic changes to login screen, menu bar, and message header bar
authorArt Cancro <ajc@citadel.org>
Tue, 3 Oct 2000 03:15:56 +0000 (03:15 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 3 Oct 2000 03:15:56 +0000 (03:15 +0000)
webcit/ChangeLog
webcit/messages.c
webcit/static/login.html
webcit/static/menubar.html

index 8338c0344f4c07dd7b78abaf2ebd8f3bc98a1ae3..bb076e6a6d9ff0124ff884c4cdc8e0f7e5742c80 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 212.16  2000/10/03 03:15:53  ajc
+* Cosmetic changes to login screen, menu bar, and message header bar
+
 Revision 212.15  2000/09/28 03:44:52  ajc
 * Linked to the bio/photo page from message headers.  I'm not sure I like the
   color scheme, though.
@@ -498,3 +501,4 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 7fa4c819a948dc213596962c64dd4cda57b29483..58a5a61ab4a7d89a739f950c8092c011e6fe6833 100644 (file)
@@ -105,10 +105,10 @@ void read_message(long msgnum, int is_summary) {
                wprintf("<STRONG>ERROR:</STRONG> %s<BR>\n", &buf[4]);
                return;
        }
-       wprintf("<TABLE WIDTH=100%% BORDER=0 CELLSPACING=0 CELLPADDING=1 BGCOLOR=444455><TR><TD>\n");
+       wprintf("<TABLE WIDTH=100%% BORDER=0 CELLSPACING=0 CELLPADDING=1 BGCOLOR=CCCCCC><TR><TD>\n");
        wprintf("<FONT ");
        if (!is_summary) wprintf("SIZE=+1 ");
-       wprintf("COLOR=\"DDDDCC\"> ");
+       wprintf("COLOR=\"000000\"> ");
        strcpy(m_subject, "");
 
        while (serv_gets(buf), strncasecmp(buf, "text", 4)) {
@@ -191,20 +191,20 @@ void read_message(long msgnum, int is_summary) {
        wprintf("<TD BGCOLOR=\"AAAADD\">"
                "<A HREF=\"/display_enter?recp=");
        urlescputs(reply_to);
-       wprintf("\">Reply</A>"
+       wprintf("\"><FONT SIZE=-1>Reply</FONT></A>"
                "</TD>\n", msgnum);
 
        if (WC->is_room_aide) {
                wprintf("<TD BGCOLOR=\"AAAADD\">"
                        "<A HREF=\"/confirm_move_msg"
                        "&msgid=%ld"
-                       "\">Move</A>"
+                       "\"><FONT SIZE=-1>Move</FONT></A>"
                        "</TD>\n", msgnum);
 
                wprintf("<TD BGCOLOR=\"AAAADD\">"
                        "<A HREF=\"/confirm_delete_msg"
                        "&msgid=%ld"
-                       "\">Del</A>"
+                       "\"><FONT SIZE=-1>Del</FONT></A>"
                        "</TD>\n", msgnum);
 
        }
index bec9ebc05a4d72e5c32783b616ebdb9940349dcf..601566f652502bf203dfbeaf2624fadedc105da4 100644 (file)
@@ -1,36 +1,45 @@
 <CENTER>
-<TABLE border=0 width=100%><TR><TD>
-<IMG SRC="/image&name=hello">
-</TD><TD><CENTER>
 <?MESG>
-<?HELLO>
-</CENTER></TD></TR></TABLE></CENTER>
-
-<HR>
-
-<CENTER><FORM ACTION="/login" METHOD="POST">
-<TABLE border><TR>
-<TD>User Name:</TD>
-<TD><INPUT TYPE="text" NAME="name" MAXLENGTH="25">
-</TD></TR><TR>
-<TD>Password:</TD>
-<TD><INPUT TYPE="password" NAME="pass" MAXLENGTH="20"></TD>
-</TR></TABLE>
-<INPUT type="submit" NAME="action" VALUE="Login">
-<INPUT type="submit" NAME="action" VALUE="New User">
-<INPUT type="submit" NAME="action" VALUE="Exit">
-
-<UL>
-
-<LI><EM>If you already have an account on <?HUMANNODE>,</EM>
-enter your user name and password and click "<TT>Login</TT>."<BR>
-
-<LI><EM>If you are a new user,</EM>
-enter the name and password you wish to use, and click
-and click "New User."<BR>
-
-<LI><EM>Please log off properly when finished.</EM>
-
-<LI>You must use a browser that supports <i>cookies</i>.<BR></EM>
-
-</UL>
+<table border=0 width="100%" height="100%">
+        <tr>
+                <td valign="middle" align="center">     
+
+                <table bgcolor="#eeeeee">
+                        <tr>
+                                <td align=center>
+                               <p><?HELLO></p>
+                               <form action="/login" method="POST">
+                                <table border="1">
+                                        <tr>
+                                                <td>UserName:</td>
+                                                <td> <input type="text" name="name" maxlength="25"></td>
+                                        </tr>
+                                        <tr>
+                                                <td>Password:</td>
+                                                <td> <input type="password" name="pass" maxlength="20"></td>
+                                        </tr>
+                                </table>
+                               <input type="submit" name="action" value="Login">
+                               <input type="submit" name="action" value="New User">
+                               <input type="submit" name="action" value="Exit">
+                               </form>
+                               </td>
+                               <td align="center"><P><IMG SRC="/image&name=hello"></p></TD>
+                       </tr>
+                       <tr>
+                               <td colspan="2">
+                                <p>
+                                <i>If you already have an account on <?HUMANNODE></i>, enter your user name and password and click
+                                &quot;Login.&quot;<br>
+                                <i>If you are a new user</i>, enter the name and password you wish to use, and click &quot;New
+                                User.&quot;<br>
+                                Please log off properly when finished.<br>
+                                You must use a browser that supports cookies.<br>
+                                </p>
+                                </td>
+                        </tr>
+                </table>
+
+                </td>
+        </tr>
+</table>
index 819b075b1f4a886a4d61240928446fb49b757114..fb34b9c0ef6d22d5694f0cd5f592bc5ef0f681c7 100644 (file)
@@ -10,7 +10,7 @@ window.open('/whobbs', 'whobbs', 'toolbar=no,location=no,directories=no,copyhist
 <CENTER>
 <IMG SRC="/image&name=hello"><BR><BR>
 
-<TABLE BORDER=0>
+<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2>
 <TR>
        <TD BGCOLOR="#3333CC">
                <FONT SIZE=-1>