Improve guestbook formatting
This commit is contained in:
parent
ce8ea31fe5
commit
e97cd585e3
2 changed files with 28 additions and 5 deletions
|
@ -20,11 +20,30 @@
|
||||||
<div id="content">
|
<div id="content">
|
||||||
<br>
|
<br>
|
||||||
<form action="submit.php" method="post">
|
<form action="submit.php" method="post">
|
||||||
<b>Nickname:</b> <input type="text" name="name"><br>
|
<fieldset>
|
||||||
<b>Message:</b> <textarea name="message"></textarea><br>
|
<legend>Add Entry</legend>
|
||||||
<b>Show IP:</b><input type="checkbox" name="showip" value="yes"><br>
|
<table class="form">
|
||||||
<b>Show info:</b><input type="checkbox" name="showinfo" value="yes" checked><br>
|
<tr>
|
||||||
<br><input type="submit">
|
<td class="form"><label for="name">Name: </label></td>
|
||||||
|
<td class="form"><input type="text" name="name"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="form"><label for="message">Message: </label></td>
|
||||||
|
<td class="form"><textarea name="message"></textarea></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="form"><label for="showip">Show IP: </label></td>
|
||||||
|
<td class="form"><input type="checkbox" name="showip" value="yes"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="form"><label for="showinfo">Show info: </label></td>
|
||||||
|
<td class="form"><input type="checkbox" name="showinfo" value="yes" checked></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="form" colspan="2"><input type="submit"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -84,6 +84,10 @@ img.right {
|
||||||
margin-left: 0.5em
|
margin-left: 0.5em
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table.form, td.form {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
div.preview {
|
div.preview {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 30em;
|
width: 30em;
|
||||||
|
|
Loading…
Reference in a new issue