aboutsummaryrefslogtreecommitdiff
path: root/static/contact.xsl
blob: 56624f178346d81f56054df96ccd98ca5fdaa0f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html" indent="yes" />
  <xsl:include href="head.xsl" />
  <xsl:template match="/">
    <html>
      <head>
        <xsl:call-template name="head" />
        <title>Contact</title>
      </head>

      <body>
        <h1>Contact</h1>
        <form id="contact-form" class="pure-form pure-form-stacked">
          <label for="name_in">
            Name
            <input id="name_in" type="text" name="name" />
          </label>
          <label for="email_in">
            Email
            <input id="email_in" type="email" name="email" />
          </label>
          <label for="message_in">
            Message
            <textarea id="message_in" name="message"></textarea>  
          </label>
        </form>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>