From 6b785e3722de7fafd1af19e0895c75b485e49b98 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Tue, 3 Mar 2015 01:52:31 +0000 Subject: [PATCH] Add login templates --- roles/ipsilon/files/templates/login/form.html | 27 +++++++++++++++++++ .../ipsilon/files/templates/login/index.html | 11 ++++++++ 2 files changed, 38 insertions(+) create mode 100644 roles/ipsilon/files/templates/login/form.html create mode 100644 roles/ipsilon/files/templates/login/index.html diff --git a/roles/ipsilon/files/templates/login/form.html b/roles/ipsilon/files/templates/login/form.html new file mode 100644 index 0000000000..7dd0462085 --- /dev/null +++ b/roles/ipsilon/files/templates/login/form.html @@ -0,0 +1,27 @@ +{% extends "layout.html" %} +{% block title %}Login{% endblock %} +{% block toptext %} +{{ login_target }} is asking to authenticate using Ipsilon +{% endblock %} +{% block main %} + Login with your credentials + {% if error %}

{{error}}

{% endif %} +
+
+ +

+ +

+

+ +

+

+ + {% if cancel_url %} + Cancel + {% endif %} +

+
+
+{% endblock %} + diff --git a/roles/ipsilon/files/templates/login/index.html b/roles/ipsilon/files/templates/login/index.html new file mode 100644 index 0000000000..fadcca8d38 --- /dev/null +++ b/roles/ipsilon/files/templates/login/index.html @@ -0,0 +1,11 @@ +{% extends "layout.html" %} +{% block title %}Login{% endblock %} +{% block toptext %} +{{ login_target }} is asking to authenticate using FedOAuth +{% endblock %} +{% block main %} +
+ Redirecting... {{ redirect }} +
+{% endblock %} +