[Openfirst-cvscommit] news/admin index.php,1.8,1.9
Brought to you by:
xtimg
From: <dav...@us...> - 2003-09-28 16:17:42
|
Update of /cvsroot/openfirst/news/admin In directory sc8-pr-cvs1:/tmp/cvs-serv8182 Modified Files: index.php Log Message: Added design table. Index: index.php =================================================================== RCS file: /cvsroot/openfirst/news/admin/index.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** index.php 13 Sep 2003 16:33:43 -0000 1.8 --- index.php 28 Sep 2003 16:17:27 -0000 1.9 *************** *** 36,55 **** ?> <form method="post" action="index.php"> ! Message Title: <input name="title" type="text" value="openFIRST News" style="width: 250px;"> ! <br />Image: <input type="text" name="image" value="<?php echo $basepath . "/images/openfirst.png"; ?>" ! style="width: 250px;"> ! <br /> ! <br /><?php if(function_exists("make_wysiwyg") == true) { ! make_wysiwyg("news", 500, 300, "Insert your news here."); ! } else { ! ?> ! <textarea name="news" cols="60" rows="20">Insert your news here.</textarea> ! <?php ! } ?> ! <br /> ! ! <input name="news" type="submit" id="news" value="Add News Item" /> ! <input type="reset" value="Clear News Item" /> ! </form> <?php } else { --- 36,71 ---- ?> <form method="post" action="index.php"> ! <p><br /> ! <br /> ! </p> ! <table width="618" align="center"> ! <tr> ! <th> </th> ! <th>Add News</th> ! </tr> ! <tr> ! <td><div align="right">Headline:</div></td> ! <td><input name="title" type="text" value="openFIRST News" style="width: 250px;"></td> ! </tr> ! <tr> ! <td width="156"><div align="right">Image:</div></td> ! <td width="332"> <input type="text" name="image" value="<?php echo $basepath . "/images/openfirst.png"; ?>" ! style="width: 250px;"> </td> ! </tr> ! <tr> ! <td valign="top"> ! <div align="right">Descriptions</div></td> ! <td> ! <textarea name="news" cols="60" rows="20">Insert your news here.</textarea> ! </td> ! </tr> ! <tr> ! <td> </td> ! <td><input name="news2" type="submit" id="news" value="Add News Item" /> ! <input name="reset" type="reset" value="Clear News Item" /> </td> ! </tr> ! </table> ! <p> </p> ! </form> <?php } else { |