summaryrefslogtreecommitdiff
path: root/src/templates/pages/newaccount.html.ftl
blob: edfd196edcc001384f843dbb4afc242de53d9626 (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
<#include "/macros/common.ftl">
<#include "/macros/common-page.ftl">

<@commonpage>
    <#if errorMessage??>
        <@noticebox class="visible">
            ${errorMessage?html}
        </@noticebox>
    <#else>
        <@noticebox>
        </@noticebox>
    </#if>

    <@content>
        <p>
            Fill out the form below to create a new Puyallup Foursquare InFellowship account.
        </p>
        <form action="${dynamicRoot}/newaccount.html" method="post">
        <p><label for="firstnameField">First Name:</label> <input id="firstnameField" type="text" name="firstname" /></p>
        <p><label for="lastnameField">Last Name:</label> <input id="lastnameField" type="text" name="lastname" /></p>
        <p><label for="emailField">Email:</label> <input id="emailField" type="text" name="email" /></p>
        <p><input type="submit" value="Create Account" /></p>
        </form>
    </@content>
</@commonpage>