summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/pages/login.html.ftl
blob: fad699f2291b7281c26335d7ffcd6fe1ad63350f (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
31
32
33
34
<#include "/macros/common.ftl">
<#include "/macros/common-page.ftl">

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

    <div id="content">
        <div id="foursquarelogin">
            <div><img src="${staticRoot}/images/foursquarechurch.png" alt="Puyallup Foursquare" /></div>
            <p>Login using your Foursquare Community Groups / Online Giving login.</p>
            <div id="login-area">
                <form action="${dynamicRoot}/account/authenticate?redirect=${redirect!""}" method="post">
                    <label>Username</label>
                    <input id="emailField" type="text" name="email" tabindex="1" />
                    <label>Password</label>
                    <input id="passwordField" type="password" name="password" tabindex="2" />
                    <input type="submit" value="Login" class="login-button" />
                </form>
                <a href="https://myfoursquarechurch.ccbchurch.com/w_password.php">Forgot username or password?</a>
            </div>
            <div style="font-weight: bold;">
                <a href="https://myfoursquarechurch.ccbchurch.com/w_sign_up.php">Sign Up</a>
            </div>
        </div>
    </div>
</@commonpage>