Formulaire Html
De BlaxWiki
Révision datée du 16 mars 2009 à 09:16 par Admin (discussion | contributions)
Formulaire basic
<html> <head> <title>Exemple formmail</title> </head> <body> <table border=0 width=100% height=100%> <tr> <td align=center valign=center> Un petit formulaire à remplir pour essayer: <form method="post" action="/common-cgi/formmail"> <input type=hidden name="from" value="Site SC"> <input type=hidden name="email" value="sitesc@fr.clara.net"> <input type=hidden name="realname" value="Site SC"> <input type=hidden name="subject" value="Test de formmail"> <input type=hidden name="redirect" value="/cgi/result.html"> <table border=1> <tr> <td>Nom:</td><td><input type=text size=20 name="Nom"></td> </tr> <tr> <td>E-mail:</td><td><input type=text size=20 name="recipient"></td> </tr> <tr> <td colspan=2>Corps:</td> </tr> <tr> <td colspan=2 align=center> <TEXTAREA ROWS=8 COLS=40 NAME="Suggestions"> </TEXTAREA> </td> </tr> <tr> <td colspan=2 align=center><input type=submit value="Envoyer"><input type=reset value="Recommencer"></td> </tr> </table> </form> /table> </body> </html>