Statistics
| Branch: | Tag: | Revision:

root / templates / welcome.html @ 442e21b6

History | View | Annotate | Download (1011 Bytes)

1
{% extends "base.html" %}
2
{% load i18n %}
3
{% block title %}{% trans "Login" %}{% endblock %}
4
{% block brcrmb_container %}{% endblock %}
5
{% block content %}
6
<div class="row">
7
<div class="span6">
8
<h3 class="muted">{% trans "Welcome" %}</h3>
9
<hr>
10
<p>{% blocktrans %}Welcome to GRNET's FoD service.{% endblocktrans %}</p>
11
<p>{% blocktrans %}If you are new to the service, take some time to read the service description{% endblocktrans %} <a href="/fod/info/en">{% trans "here" %}</a>.</p>
12
<p>{% blocktrans %}If you have properly set your Shibboleth attributes, you can login using the link on the right{% endblocktrans %}</p>
13
<p>{% blocktrans %}For troubleshooting info and remarks do not hesitate to contact GRNET's Helpdesk.{% endblocktrans %}</p>
14
</div>
15

    
16
<div class="span6" id="loginform">
17

    
18
<div style="text-align: center;">
19
                                        <a href="{% url login %}">
20
                                        <img src="/fodstatic/shib_login.png" style="border:none;">
21
                                        <p>{% trans "Shibboleth Login" %}</p>
22
                                </a>
23
        
24
</div>
25
</div>
26
</div>
27

    
28
{% endblock %}