#0008: Contact Us Page (Forms)

Regarding https://www.cacert.org/index.php?id=11

Problem: Form looks unstructured.

Solution: Change forms from

<p><form method="post" action="/index.php">
<input type="hidden" name="oldid" value="11">
<input type="hidden" name="support" value="yes">
Your Name: <input type="text" name="who"><br>
Your Email: <input type="text" name="email"><br>
Subject: <input type="text" name="subject"><br>
<textarea name="message" cols="40" rows="10"></textarea><br>
<input type="submit" name="process" value="Send">
</form></p>

to

<form method="post" action="/index.php">
  <input type="hidden" name="oldid" value="11">
  <input type="hidden" name="support" value="yes">

  <table border="0">
    <tr><td>Your Name:  </td><td><input type="text" name="who"></td></tr>
    <tr><td>Your Email: </td><td><input type="text" name="email"></td></tr>
    <tr><td>Subject:    </td><td><input type="text" name="subject"></td></tr>
    <tr><td colspan="2"><textarea name="message" cols="40" rows="10"></textarea></td></tr>
    <tr><td colspan="2"><input type="submit" name="process" value="Send"></td></tr>
  </table>
</form>

Same for the second contact form which just has one of the type=hidden lines removed.

Comments

Christ set status to Open with patch, 2005-06-16

ContentReviewTeam/case0008 (last edited 2008-05-22 22:17:04 by anonymous)