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

<@commonpage>
    <@noticebox>
        <#if errorMessage??>
            ${errorMessage?html}
        <#else>
            Welcome!
        </#if>
    </@noticebox>

    <@content>
        <p>
            Fill out the form below to create a new Puyallup Foursquare InFellowship account.
        </p>
        <form action="${dynamicRoot}/createaccount" 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>