Add cancelled-invite html.

If a invited user accepts a cancelled invitation they are directed to a page telling them the invitation is cancelled.
Without this they were able to register and were added to the service.
This commit is contained in:
Rebecca Law
2016-03-04 14:42:52 +00:00
parent a974e6e157
commit 8074c6ea7f
5 changed files with 42 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
{% extends "withoutnav_template.html" %}
{% block page_title %}Invitation has been cancelled{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large">
The invitation you were sent has been cancelled.
</h1>
<p>
The person that sent you the invitation decided that it was sent in error and has cancelled the invitation.
</p>
</div>
</div>
{% endblock %}