diff options
Diffstat (limited to 'static/contact.xsl')
| -rw-r--r-- | static/contact.xsl | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/static/contact.xsl b/static/contact.xsl index 505d534..aa814d0 100644 --- a/static/contact.xsl +++ b/static/contact.xsl @@ -8,19 +8,18 @@ <xsl:param name="title"> <xsl:text>Contact</xsl:text> </xsl:param> + <xsl:param name="message-placeholder"> + <xsl:text>you@ema.il + +Hey I think I might build an idol and start worshiping you. Which of the following materials would please you? Gold, Silver,...</xsl:text> + </xsl:param> + <xsl:param name="content"> <form id="contact-form" method="POST" action="/contact"> <label> - Name - <input id="name_in" type="text" name="name" placeholder="Name" /> - </label> - <label> - Email - <input id="email_in" type="email" name="email" placeholder="you@ema.il" /> - </label> - <label> - Message - <textarea id="message_in" name="message" placeholder="What's up bud?"></textarea> + Send me a message + <textarea id="message_in" name="message" placeholder="{$message-placeholder}" rows="5"></textarea> + <small>Follow the template instructions or be sent to the trash!</small> </label> <button type="submit">Transmit</button> </form> |
