diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-06-03 17:50:17 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2013-06-03 17:50:17 -0700 |
commit | 39d697b619c5b836da38d3ae457fee8999055c45 (patch) | |
tree | bfa0cc5d884ca96cd4fc88f1b000cbe47191a437 /src/templates/pages/login.html.ftl | |
parent | f771e74c3867c2e16d0c9d5187a2e115345b9048 (diff) |
Template Changes and Login Page
Changing templates to have .html in their name to reflect the links on
the site. Also adding a placeholder about page and a rough cut of the
login page.
Diffstat (limited to 'src/templates/pages/login.html.ftl')
-rw-r--r-- | src/templates/pages/login.html.ftl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/templates/pages/login.html.ftl b/src/templates/pages/login.html.ftl new file mode 100644 index 0000000..29e30e9 --- /dev/null +++ b/src/templates/pages/login.html.ftl @@ -0,0 +1,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="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> + |