b9df80e5ecf5a858133eb59467ebb48aa18a68b9
[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" /> Experimenter registration</h1>
7 </div>
8 <div class="row">
9         {%if activation_status == 'success'%}
10                 <h3>Email activation complete !</h3>
11                 <p>Your account is pending for validation.</p>
12                 <p>PI of your institution is responsible for validating your account.</p>
13                 <p>You will be notified once your account is validated.</p>
14                 <p>In the meantime, you can login to the portal with your email and password and browse through the limited access features.</p>
15         {%else%}
16                 <h3>Email activation Failed !</h3>
17                 <p>Your email address is not registered in our server.</p>
18                 <p>Please <a href="/portal/register">register</a> to get access to the portal.</p> 
19                 <p>If you have already registered and still having this message, please <a href="/portal/contact/">contact support.</a> </p>
20         {%endif%}
21  </div>
22
23 {% endblock %}