diff options
author | 2005-09-04 12:15:09 +0000 | |
---|---|---|
committer | 2005-09-04 12:15:09 +0000 | |
commit | 537c647e66eb432768229ecb3a7c9fe02fd4730f (patch) | |
tree | 97d1eaf7f12af5ac1d0fb8ccaf31b809480cd302 /www-apps/pyblosxom-plugins/files | |
parent | Fixed digests (diff) | |
download | overlay-537c647e66eb432768229ecb3a7c9fe02fd4730f.tar.gz overlay-537c647e66eb432768229ecb3a7c9fe02fd4730f.tar.bz2 overlay-537c647e66eb432768229ecb3a7c9fe02fd4730f.zip |
Fixed contact template
svn path=/; revision=347
Diffstat (limited to 'www-apps/pyblosxom-plugins/files')
-rw-r--r-- | www-apps/pyblosxom-plugins/files/contact.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/www-apps/pyblosxom-plugins/files/contact.py b/www-apps/pyblosxom-plugins/files/contact.py index 763e5d9..1ead81e 100644 --- a/www-apps/pyblosxom-plugins/files/contact.py +++ b/www-apps/pyblosxom-plugins/files/contact.py @@ -50,25 +50,25 @@ _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"> -<div id="contactLine"> +<div class="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"> +<div class="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"> +<div class="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"> +<div class="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 class="contactSubmit"> + <input class="contactSubmit" type="submit" value="Send" style="width:auto; margin-right:0;" /> + <input class="contactSubmit" type="reset" value="Reset" style="width:auto; margin-right:0;" /> </div> </form> </div> |