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 %} +