Generic footer
[unfold.git] / portal / templates / smartfire / smartfire_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 have provided; however, 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 your organisation's managers with a validation request.</p>
13     {% elif activation_status == 'validated' %}
14                 <h3>Account validated.</h3>
15                 <p>We have identified you as a valid PLE user. Your SmartFIRE account has automatically been approved.</p>
16         <p>You have a full access to SmartFIRE testbeds.</p>
17         {%else%}
18                 <h3>Signup confirmation failed.</h3>
19                 <p>You have probably arrived at this page by clicking a confirmation link in an email that we have sent to you. 
20                 We have been unable to match the link that you have clicked to a signup request in our database.</p>
21                 <p>Please <a href="/portal/contact/">contact support</a> so that we may help you complete the signup process.</p>
22         {%endif%}
23  </div>
24
25 {% endblock %}