|
Revision 5, 1.3 KB
(checked in by alex, 4 years ago)
|
|
|
| Line | |
|---|
| 1 | {% extends "questionnaire/index.html" %} |
|---|
| 2 | |
|---|
| 3 | {% block content %} |
|---|
| 4 | |
|---|
| 5 | <div class='header'> |
|---|
| 6 | <p>Welcome! |
|---|
| 7 | </p> |
|---|
| 8 | <p> |
|---|
| 9 | If you've received an invitation to answer a questionnaire, please login below. |
|---|
| 10 | </div> |
|---|
| 11 | |
|---|
| 12 | <div class='login'> |
|---|
| 13 | |
|---|
| 14 | <div class='login_header'> |
|---|
| 15 | My Questionnaire |
|---|
| 16 | </div> |
|---|
| 17 | |
|---|
| 18 | <div class='login_body'> |
|---|
| 19 | |
|---|
| 20 | {% if error %} |
|---|
| 21 | <strong style='color: red;'>{{ error }}</strong><p /> |
|---|
| 22 | {% endif %} |
|---|
| 23 | |
|---|
| 24 | <form method='post' action='/questionnaire/' name='myform'> |
|---|
| 25 | <table align='center'> |
|---|
| 26 | <tr><td><label for='email'>Emailaddress:</label></td><td><input type='text' |
|---|
| 27 | id='email' |
|---|
| 28 | name='email'/></td></tr> |
|---|
| 29 | <tr><td><label for='password'>Password:</label></td><td><input type='password' name='password' id='password'/></td></tr> |
|---|
| 30 | <tr><td colspan='2'><input class='submit' type='submit' value='Login'/></td></tr> |
|---|
| 31 | </table> |
|---|
| 32 | </form> |
|---|
| 33 | </div> |
|---|
| 34 | |
|---|
| 35 | </div> |
|---|
| 36 | |
|---|
| 37 | <div class='header' style='background: white; width: 300px; margin: 0 auto; margin-top: 3em; padding: 5px; border: 1px solid #cccccc; font-size: smaller;'> |
|---|
| 38 | in cooperation |
|---|
| 39 | with:<br /> <a href='http://www.aperte-it.com'><img border='0' |
|---|
| 40 | src='http://www.aperte-it.com/wp-content/themes/aperte4/images/header.png' |
|---|
| 41 | /></a><br /> |
|---|
| 42 | See <A href='http://djangoquest.aperte-it.com'>The Django |
|---|
| 43 | Questionnaire project website</a> for more details |
|---|
| 44 | </div> |
|---|
| 45 | |
|---|
| 46 | {% endblock %} |
|---|