This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
paul-synchro/django/sp_sso/templates/index.html

29 lines
1.3 KiB
HTML

{% extends "sp_base.html" %}
{% load static %}
{% load i18n %}
<div id='main'>
<div id='header'>
{% block subheader %}
{% endblock %}
</div>
{% block content %}
<h1 style='text-align:center'>{% trans "Welcome to the Campus Condorcet subscription website!" %}</h1><br><br>
<div id="padding-left">&nbsp;</div>
<div id="centered-column">
<p style='text-align:center'>
<h2 style='color:#21C910'>{% trans "Your are moving in to the Campus" %}</h2>
<a class='button inline' href="{% url "declare" %}">{% trans "Register using your Campus institution account" %}</a><br/><br/>
<a class='button inline' href="{% url "invitation" %}?host_type=member">{% trans "Send invites for people to declare their accounts" %}</a><br/><br/>
<h2 style='color:#109BC9'>{% trans "You have been invited by a member of the Campus" %}</h2>
<a class='button inline' href="{% url "register" %}">{% trans "Register using your origin institution account" %}</a><br/><br/>
<a class='button inline' href="{% url "blankregister" %}">{% trans "Register using an empty form" %}</a><br/><br/>
<h2 style='color:#D85D5D'>{% trans "You would like to invite somebody to the Campus" %}</h2>
<a class='button inline' href="{% url "invitation" %}">{% trans "Send invites" %}</a><br/>
</div>
<div id="padding-right">&nbsp;</div>
{% endblock %}
</div>