summaryrefslogtreecommitdiff
path: root/src/templates/pages/login.html.ftl
blob: 590649ce21a761a280ded9b022c7e2196155c61b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<#include "/macros/common.ftl">
<#include "/macros/common-page.ftl">

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

    <@content>
        <p>Welcome! You will need to login with your Foursquare Church InFellowship login.</p>
        <form action="${dynamicRoot}/login.html" method="post">
        <p><label for="emailField">Email:</label> <input id="emailField" type="text" name="email" /></p>
        <p><label for="passwordField">Password:</label> <input id="passwordField" type="password" name="password" /></p>
        <p><input type="submit" value="Login" /></p>
        </form>
    </@content>
</@commonpage>