- adding and authenticating users to/through LDAP
[myslice.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 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>
12         {%else%}
13                 <h3>Signup confirmation failed.</h3>
14                 <p>You have probably arrived at this page by clicking a confirmation link in an email that we have sent to you. However, 
15                 we have been unable to match the link that you have clicked to a signup request in our database.</p>
16                 <p>Please <a href="/portal/contact/">contact support</a> so that we can help you complete the signup process.</p>
17         {%endif%}
18  </div>
19
20 {% endblock %}