The code that creates the Add site page comes from the /include/add.php file
To place text above the form, locate the begininning of the form, around line #313
| Code: |
if(!isset($submit_add) || isset($error)){
$htmlsrc = "<form method=\"post\" action=\"./directory?" . session_name();
$htmlsrc .= "=" . session_id() . "&show=add\">" . $form_table . "<tr>";
$htmlsrc .= "\r\n\t<td width=\"40%\" align=\"right\" valign=\"top\" ";
|
Sounds like you want to add something like
| Code: |
if(!isset($submit_add) || isset($error)){
$htmlsrc = "<p>Your own text here, could have <b>HTML</b> in it, but be sure to escape \"quotes\" or you will get an error , also not the next line now has .= in it to append to the $htmlsrc variable.</p>";
$htmlsrc .= "<form method=\"post\" action=\"./directory?" . session_name();
$htmlsrc .= "=" . session_id() . "&show=add\">" . $form_table . "<tr>";
$htmlsrc .= "\r\n\t<td width=\"40%\" align=\"right\" valign=\"top\" ";
|