diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-09-03 07:02:59 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2013-09-03 07:03:26 -0700 |
commit | eb881fdc9b62d1b9d1f5c61f1f4077065db7e933 (patch) | |
tree | 85dda0e94824177ed5aed88d511b95071fe85d87 /src/templates | |
parent | 84d008be8a35d3a19607de669042ddb5c6540f0c (diff) |
New account page improvements and renumbered questions.
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/pages/newaccount.html.ftl | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/templates/pages/newaccount.html.ftl b/src/templates/pages/newaccount.html.ftl index 780a5c8..edfd196 100644 --- a/src/templates/pages/newaccount.html.ftl +++ b/src/templates/pages/newaccount.html.ftl @@ -2,19 +2,20 @@ <#include "/macros/common-page.ftl"> <@commonpage> - <@noticebox> - <#if errorMessage??> + <#if errorMessage??> + <@noticebox class="visible"> ${errorMessage?html} - <#else> - Welcome! - </#if> - </@noticebox> + </@noticebox> + <#else> + <@noticebox> + </@noticebox> + </#if> <@content> <p> Fill out the form below to create a new Puyallup Foursquare InFellowship account. </p> - <form action="${dynamicRoot}/createaccount" method="post"> + <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> |