Add more wording to the invite claim pages. Fixes #17

This commit is contained in:
Trever Fischer
2012-03-10 22:01:47 -05:00
parent 8900530b91
commit 3708549210
2 changed files with 9 additions and 1 deletions

View File

@@ -2,6 +2,8 @@
{%block title%}Claim an Invite{%endblock%}
{%block content %}
<p>Caminus is an invite-only community. If you know someone with an active account, ask for one!</p>
<p>If you have an invite, please enter the code below:</p>
<form method="POST" action="{%url local.views.claimInvite%}">
{% csrf_token %}
{{form.as_p}}

View File

@@ -1,11 +1,17 @@
{% extends "base_simple.html" %}
{%block title%}Register an Account{%endblock%}
{% block sectiontitle %}Welcome!{%endblock%}
{%block content %}
<p>Congratulations on recieving a caminus invite! You were invited here by {{invite.creator}}.</p>
<p>To accept this invite, please register an account:</p>
<form method="POST" action="{%url local.views.register %}">
{% csrf_token %}
<fieldset>
{{profileForm.as_p}}
{{userForm.as_p}}
{{userForm.as_table}}
</fieldset>
<input type="submit" value="Register!"/>
</form>
{%endblock%}