43feab20c760914dbdfabec7499b431ce8e4470d
[unfold.git] / portal / templates / email_activation.html
1 {% extends "layout.html" %}
2
3 {% block content %}
4
5 <div class="row">
6         <h1><img src="{{ STATIC_URL }}img/icon_user_small.png" alt="User Registration" />User sign-up</h1>
7 </div>
8 <div class="row">
9         {%if activation_status == 'success'%}
10                 <h3>Signup request confirmed.</h3>
11                 <p>You are currently able to log in to the portal using your email address and the password that you provided, but your access is still limited.</p> 
12                 <p>You will have full access as soon as your account is validated by a manager at your organization. We have sent an email to the managers with a validation request.</p>
13         {%else%}
14                 <h3>Signup confirmation failed.</h3>
15                 <p>You have probably arrived at this page by clicking a confirmation link in an email that we have sent to you. However, 
16                 we have been unable to match the link that you have clicked to a signup request in our database.</p>
17                 <p>Please <a href="/portal/contact/">contact support</a> so that we can help you complete the signup process.</p>
18         {%endif%}
19  </div>
20
21 {% endblock %}