From: <vb...@us...> - 2002-09-15 13:20:59
|
Update of /cvsroot/webnotes/webnotes In directory usw-pr-cvs1:/tmp/cvs-serv8553 Modified Files: note_add_msg_inc.php note_add_page.php Log Message: Updating the submit note page to follow the new look'n'feel. Index: note_add_msg_inc.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/note_add_msg_inc.php,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- note_add_msg_inc.php 11 Sep 2002 09:49:54 -0000 1.6 +++ note_add_msg_inc.php 15 Sep 2002 13:20:56 -0000 1.7 @@ -8,15 +8,19 @@ # $Id$ # -------------------------------------------------------- ?> +<br /> <div align="center"> +<div class="note75" align="center"> + <strong>NOTE</strong><br /><br /> <table width="75%"> <tr> <td> <p>You can contribute your insights to this document via your web browser!</p> <p>Just add your comment and (optional) email address in the form below. If you do specify your real email, anti-spam measures are encouraged (eg. la...@ma...).</p> - <p>Currently no HTML tags are allowed. Line breaks are preserved.</p> + <p>No HTML tags are allowed. Line breaks are preserved.</p> <p>After you add your note it will be queued for approval by a moderator. Your note may be edited for spelling, grammar, and content.</p> </td> </tr> </table> +</div> </div> Index: note_add_page.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/note_add_page.php,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- note_add_page.php 11 Sep 2002 09:49:54 -0000 1.15 +++ note_add_page.php 15 Sep 2002 13:20:56 -0000 1.16 @@ -49,36 +49,35 @@ echo <<<EOT <br /> <div align="center"> - <table bgcolor="$g_table_border_color" width="75%" cellspacing="1" border="0"> - <form method="post" action="note_preview_page.php"> + <table class="width75" summary=""> + <form method="post" action="$g_note_preview_page"> <input type="hidden" name="f_came_from" value="$HTTP_REFERER" /> <input type="hidden" name="f_page_id" value="$f_page_id" /> <input type="hidden" name="f_url" value="$f_url" /> - - <tr bgcolor="$g_header_color"> - <td colspan="2"><strong><? echo $s_add_note ?></strong></td> + + <tr class="form-title"> + <td colspan="2"><strong>$s_add_note</strong></td> </tr> - <tr bgcolor="$g_primary_light_color"> - <td width="15%">$s_page</td> + <tr class="row-1"> + <td class="category" width="15%">$s_page</td> <td width="85%">$t_base_page_name</td> </tr> - <tr bgcolor="$g_primary_dark_color"> - <td>$s_date</td> + <tr class="row-2"> + <td class="category">$s_date</td> <td>$t_date</td> </tr> - <tr bgcolor="$g_primary_light_color"> - <td>$s_email</td> + <tr class="row-1"> + <td class="category">$s_email</td> <td><input type="text" name="f_email" size="64" maxlength="128" /></td> </tr> - <tr bgcolor="$g_primary_dark_color"> - <td>$s_note</td> + <tr class="row-2"> + <td class="category">$s_note</td> <td><textarea type="text" name="f_note" rows="16" cols="72"></textarea></td> </tr> - <tr bgcolor="$g_white_color"> - <td colspan="2" align="center" width="80%"><input type="submit" value="Preview" /> + <tr> + <td class="form-buttons" colspan="2" align="center" width="80%"><input type="submit" value="Preview" /> </td> - </tr> </form> </table> |