diff options
author | 2005-09-04 12:17:23 +0000 | |
---|---|---|
committer | 2005-09-04 12:17:23 +0000 | |
commit | 3c19819385a1c8e76d88f60821122c6370b4ad2d (patch) | |
tree | 79cf2f578690cd1a511cb38d65932a0db450dae2 /www-apps/pyblosxom-plugins/files | |
parent | Fixed digests (diff) | |
download | overlay-3c19819385a1c8e76d88f60821122c6370b4ad2d.tar.gz overlay-3c19819385a1c8e76d88f60821122c6370b4ad2d.tar.bz2 overlay-3c19819385a1c8e76d88f60821122c6370b4ad2d.zip |
Fixed contact template
svn path=/; revision=349
Diffstat (limited to 'www-apps/pyblosxom-plugins/files')
-rw-r--r-- | www-apps/pyblosxom-plugins/files/contact.py | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/www-apps/pyblosxom-plugins/files/contact.py b/www-apps/pyblosxom-plugins/files/contact.py index 1ead81e..63111be 100644 --- a/www-apps/pyblosxom-plugins/files/contact.py +++ b/www-apps/pyblosxom-plugins/files/contact.py @@ -51,19 +51,27 @@ _default_template = """ <div style="display:block;">$contact_error_message</div> <form name="contactForm" id="contactForm" method="post" action="$base_url$contact_urltrigger"> <div class="contactLine"> - <label class="contactLine" for="name" title="Your name">Name</label> + <div class="contactLabel"> + <label class="contactLine" for="name" title="Your name">Name</label> + </div> <input type="text" name="name" id="name" value="$contact_name" /><br /> </div> <div class="contactLine"> - <label class="contactLine" for="email" title="Your email address">Email</label> + <div class="contactLabel"> + <label class="contactLine" for="email" title="Your email address">Email</label> + </div> <input type="text" name="email" id="email" value="$contact_email" /><br /> </div> <div class="contactLine"> - <label class="contactLine" for="subject" title="Subject of your message">Subject</label> + <div class="contactLabel"> + <label class="contactLine" for="subject" title="Subject of your message">Subject</label> + </div> <input class="contactLine" type="text" name="subject" id="subject" value="$contact_subject" /><br /> </div> <div class="contactText"> - <label class="contactText" for="message" title="Your message">Message</label> + <div class="contactLabel"> + <label class="contactText" for="message" title="Your message">Message</label> + </div> <textarea name="message" id="message" style="height:150px;">$contact_message</textarea><br /> </div> <div class="contactSubmit"> |