aboutsummaryrefslogtreecommitdiff
path: root/static/contact.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'static/contact.xsl')
-rw-r--r--static/contact.xsl18
1 files changed, 18 insertions, 0 deletions
diff --git a/static/contact.xsl b/static/contact.xsl
new file mode 100644
index 0000000..e9ce03c
--- /dev/null
+++ b/static/contact.xsl
@@ -0,0 +1,18 @@
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:output method="html" indent="yes" />
+ <xsl:template match="/">
+ <html>
+ <head>
+ <title>Contact</title>
+ </head>
+
+ <body>
+ <form id="contact-form">
+ <input type="text" name="name" />
+ <input type="email" name="email" />
+ <textarea name="message"></textarea>
+ </form>
+ </body>
+ </html>
+ </xsl:template>
+</xsl:stylesheet>