Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

register_form2 #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 25 additions & 16 deletions ebpub/ebpub/templates/accounts/register_form_2.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,31 @@ <h2>Step 2: Set a password</h2>
{% csrf_token %}
{{ form.e.errors }}
{{ form.e }}{{ form.h }}
<table>
<tr>
<th><label for="id_password1">Password:</label></th>
<td>{{ form.password1.errors }}{{ form.password1 }}</td>
</tr>
<tr>
<th><label for="id_password2">Password (again):</label></th>
<td>{{ form.password2.errors }}{{ form.password2 }}</td>
</tr>
<tr>
<th>&nbsp;</th>
<td>
<button type="submit">Create your account</button>
</td>
</tr>
</table>
<div class="row">
<div class="four col">
<h2>Password</h2>
</div>
<div class="eight col">
{{ form.password1.errors }}{{ form.password1 }}
</div>
</div>
<div class="row">
<div class="four col">
<h2>Password (again)</h2>
</div>
<div class="eight col">
{{ form.password2.errors }}{{ form.password2 }}
</div>
</div>
<div class="row">
<div class="eight col offset-by-four">
<a href="/info/policies.php">By creating an account, you accept our terms and policies.</a>
<button type="submit" style="font-size:20px; width:100%; text-align:center;">Welcome to LarryvilleKU</button>
</div>
</div>
</form>
</div>
<div class="six col"> &nbsp; </div>
</div>
</div>
{% endblock %}