diff options
author | 2005-09-04 12:06:52 +0000 | |
---|---|---|
committer | 2005-09-04 12:06:52 +0000 | |
commit | 7c36a77a0a930a71b6ec38cc0271b133007d2cc2 (patch) | |
tree | f0f9f9acecff4c9e242492c0cb5cd689823a178f /www-apps/pyblosxom-plugins/files | |
parent | Fixed digests (diff) | |
download | overlay-7c36a77a0a930a71b6ec38cc0271b133007d2cc2.tar.gz overlay-7c36a77a0a930a71b6ec38cc0271b133007d2cc2.tar.bz2 overlay-7c36a77a0a930a71b6ec38cc0271b133007d2cc2.zip |
Fixed contact template
svn path=/; revision=345
Diffstat (limited to 'www-apps/pyblosxom-plugins/files')
-rw-r--r-- | www-apps/pyblosxom-plugins/files/contact.py | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/www-apps/pyblosxom-plugins/files/contact.py b/www-apps/pyblosxom-plugins/files/contact.py index 3f3e00c..763e5d9 100644 --- a/www-apps/pyblosxom-plugins/files/contact.py +++ b/www-apps/pyblosxom-plugins/files/contact.py @@ -50,16 +50,26 @@ _default_template = """ <h2>Contact me</h2> <div style="display:block;">$contact_error_message</div> <form name="contactForm" id="contactForm" method="post" action="$base_url$contact_urltrigger"> -<label for="name" title="Your name">Name</label> -<input type="text" name="name" id="name" value="$contact_name" /><br /> -<label for="email" title="Your email address">Email</label> -<input type="text" name="email" id="email" value="$contact_email" /><br /> -<label for="subject" title="Subject of your message">Subject</label> -<input type="text" name="subject" id="subject" value="$contact_subject" /><br /> -<label for="message" title="Your message">Message</label> -<textarea name="message" id="message" style="height:150px;">$contact_message</textarea><br /> -<input type="submit" value="Send" style="width:auto; margin-right:0;" /> -<input type="reset" value="Reset" style="width:auto; margin-right:0;" /> +<div id="contactLine"> + <label class="contactLine" for="name" title="Your name">Name</label> + <input type="text" name="name" id="name" value="$contact_name" /><br /> +</div> +<div id="contactLine"> + <label class="contactLine" for="email" title="Your email address">Email</label> + <input type="text" name="email" id="email" value="$contact_email" /><br /> +</div> +<div id="contactLine"> + <label class="contactLine" for="subject" title="Subject of your message">Subject</label> + <input class="contactLine" type="text" name="subject" id="subject" value="$contact_subject" /><br /> +</div> +<div id="contactText"> + <label class="contactText" for="message" title="Your message">Message</label> + <textarea name="message" id="message" style="height:150px;">$contact_message</textarea><br /> +</div> +<div id="contactSubmit"> + <input type="submit" value="Send" style="width:auto; margin-right:0;" /> + <input type="reset" value="Reset" style="width:auto; margin-right:0;" /> +</div> </form> </div> """ |