Merge branch 'onelab' of ssh://git.onelab.eu/git/myslice into fibre
[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     {% elif activation_status == 'validated' %}
13                 <h3>Account validated.</h3>
14                 <p>We have identified you as a valid PLE user. Your OneLab account has automatically been approved.</p>
15         <p>You have a full access to OneLab testbeds.</p>
16         {%else%}
17                 <h3>Signup confirmation failed.</h3>
18                 <p>You have probably arrived at this page by clicking a confirmation link in an email that we have sent to you. However, 
19                 we have been unable to match the link that you have clicked to a signup request in our database.</p>
20                 <p>Please <a href="/portal/contact/">contact support</a> so that we can help you complete the signup process.</p>
21         {%endif%}
22  </div>
23
24 {% endblock %}