Projet

Général

Profil

Télécharger (823 octets) Statistiques
| Branche: | Tag: | Révision:

univnautes / usr / local / univnautes / sp / sp / templates / saml / post_form.html @ a0ab6dae

1
{% extends "base.html" %}
2
{% load i18n %}
3

    
4
{% block title %} {{ title }} {% endblock %}
5
{% block bodyargs %}onload="document.forms['saml'].submit()"{% endblock %}
6

    
7
{% block content %}
8
<div class="post-redirect">
9
<h2>Connexion à la page d'authentification de l'établissement…</h2>
10
<form action="{{url}}" method="post" name="saml">
11
   <p>{% trans "You should be automatically redirected." %}</p>
12
   <p>{% trans "If this page is still visible after a few seconds, press the Send button below." %}</p>
13
   <input type="hidden" name="{{ fieldname }}" value="{{ body }}" />
14
   {% if relay_state %}
15
   <input type="hidden" name="RelayState" value="{{ relay_state }}"/>
16
   {% endif %}
17
   <div class="buttons-bar">
18
   <input type="submit" name="sendButton" value="{% trans 'Send' %}" />
19
   </div>
20
  </form>
21
</div>
22
{% endblock %}
    (1-1/1)