Skip to content
Snippets Groups Projects
Commit 41c8cab1 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Move assets to assets-dir and inline JS to separate file (& PSR2)

parent d13304e8
No related branches found
No related tags found
No related merge requests found
{% set autofocus = 'proceedbutton' %}
{% extends "base.twig" %} {% extends "base.twig" %}
{% block content %} {% block content %}
...@@ -8,7 +6,7 @@ ...@@ -8,7 +6,7 @@
<form action="{{ target | escape }}"> <form action="{{ target | escape }}">
{% for name, value in data -%} {% for name, value in data -%}
<input type="hidden" name="{{ name }}" value="{{ value }}" /> <input type="hidden" name="{{ name }}" value="{{ value }}">
{%- endfor %} {%- endfor %}
<p>{% trans %}Your certificate will expire in {{ daysleft }} days.{% endtrans %}</p> <p>{% trans %}Your certificate will expire in {{ daysleft }} days.{% endtrans %}</p>
...@@ -19,7 +17,7 @@ ...@@ -19,7 +17,7 @@
<p>{% trans 'Please renew your certificate in time.' %}</p> <p>{% trans 'Please renew your certificate in time.' %}</p>
{% endif -%} {% endif -%}
<p><input type="submit" name="proceed" id="proceedbutton" value="{% trans 'Proceed' %}" /></p> <p><input type="submit" name="proceed" id="proceedbutton" value="{% trans 'Proceed' %}" autofocus></p>
</form> </form>
......
...@@ -2,32 +2,28 @@ ...@@ -2,32 +2,28 @@
{% extends "base.twig" %} {% extends "base.twig" %}
{% block preload %} {% block preload %}
<link rel="stylesheet" type="text/css" href="{{ baseurlpath }}assets/css/yubikey.css" /> <link rel="stylesheet" type="text/css" href="{{ baseurlpath }}assets/css/yubikey.css">
{% endblock %}
{% block postload %}
<script src="{{ baseurlpath }}assets/js/autofocus.js"></script>
{% endblock %} {% endblock %}
{% block content %} {% block content %}
{% if errorCode != null %} {% if errorCode != null %}
<div style="border-left: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; background: #f5f5f5"> <div style="border-left: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; background: #f5f5f5">
<img src="{{ baseurlpath }}resources/icons/experience/gtk-dialog-error.48x48.png" class="float-l" style="margin: 15px;" alt="" /> <img src="{{ baseurlpath }}resources/icons/experience/gtk-dialog-error.48x48.png" class="float-l" style="margin: 15px;" alt="">
<h2>{{ '{login:error_header}'|trans }}</h2> <h2>{{ '{login:error_header}'|trans }}</h2>
<p><span style="text-decoration: bold;">{{ errorTitle }}</p> <p><span style="text-decoration: bold;">{{ errorTitle }}</p>
<p>{{ errorDesc }}</p> <p>{{ errorDesc }}</p>
</div> </div>
{% endif %} {% endif %}
<img style="float: right" src="{{ logoUrl }}" alt="" /> <img style="float: right" src="{{ logoUrl }}" alt="">
<img style="clear: right; float: right" src="{{ devicepicUrl }}" alt="YubiKey" /> <img style="clear: right; float: right" src="{{ devicepicUrl }}" alt="YubiKey">
<h2>{{ '{authYubiKey:yubikey:header}'|trans }}</h2> <h2>{{ '{authYubiKey:yubikey:header}'|trans }}</h2>
<form action="?" method="post" name="f"> <form action="?" method="post" name="f">
<p>{{ '{authYubiKey:yubikey:intro}'|trans }}</p> <p>{{ '{authYubiKey:yubikey:intro}'|trans }}</p>
<p><input id="otp" type="text" tabindex="2" name="otp" /></p> <p><input id="otp" type="text" tabindex="2" name="otp" autofocus></p>
{% for key, value in stateParams %} {% for key, value in stateParams %}
<input type="hidden" name="{{ key|escape('html') }}" value="{{ value|escape('html') }}"/> <input type="hidden" name="{{ key|escape('html') }}" value="{{ value|escape('html') }}">
{% endfor %} {% endfor %}
</form> </form>
{% endblock %} {% endblock %}
...@@ -19,12 +19,12 @@ ...@@ -19,12 +19,12 @@
{% endif %} {% endif %}
<input type="hidden" name="StateId" value="{{ stateId }}" /> <input type="hidden" name="StateId" value="{{ stateId }}" />
<button type="submit" name="yes" class="btn" id="yesbutton">{{ '{consent:consent:yes}'|trans }}</button> <button type="submit" name="yes" class="btn" id="yesbutton"{%- if autofocus == 'yesbutton'%} autofocus{% endif %-}>{{ '{consent:consent:yes}'|trans }}</button>
</form> </form>
<form id="consent_no" action="{{ noTarget }}"> <form id="consent_no" action="{{ noTarget }}">
<input type="hidden" name="StateId" value="{{ stateId }}" /> <input type="hidden" name="StateId" value="{{ stateId }}" />
<button type="submit" class="btn" name="no" id="nobutton">{{ '{consent:consent:no}'|trans }}</button> <button type="submit" class="btn" name="no" id="nobutton"{%- if autofocus == 'nobutton'%} autofocus{% endif %-}>{{ '{consent:consent:no}'|trans }}</button>
</form> </form>
{% if sppp != false %} {% if sppp != false %}
......
...@@ -11,6 +11,6 @@ ...@@ -11,6 +11,6 @@
<div class="trackidtext"> <div class="trackidtext">
<p>{{ '{errors:report_trackid}'|trans }}<span class="trackid">{{ trackId }}</span></p> <p>{{ '{errors:report_trackid}'|trans }}<span class="trackid">{{ trackId }}</span></p>
</div> </div>
<input type="submit" name="continue" id="contbutton" value="'{core:short_sso_interval:retry}'|trans|escape('html') }}" /> <input type="submit" name="continue" id="contbutton" value="'{core:short_sso_interval:retry}'|trans|escape('html') }}" autofocus />
</form> </form>
{% endblock %} {% endblock %}
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
{% extends "base.twig" %} {% extends "base.twig" %}
{% block preload %} {% block preload %}
<link href="{{ baseurlpath }}assets/css/style.css" rel="stylesheet" type="text/css" media="screen" /> <link href="{{ baseurlpath }}assets/css/style.css" rel="stylesheet" type="text/css" media="screen">
{% endblock %} {% endblock %}
{% block postload %} {% block postload %}
<script type="text/javascript" src="{{ baseurlpath }}assets/js/jquery.livesearch.js"></script> <script type="text/javascript" src="{{ baseurlpath }}assets/js/jquery.livesearch.js"></script>
...@@ -15,11 +15,11 @@ ...@@ -15,11 +15,11 @@
<div class="favourite">{{ '{disco:previous_auth}'|trans }} <div class="favourite">{{ '{disco:previous_auth}'|trans }}
<strong>{{ faventry.translated|escape('html') }}</strong> <strong>{{ faventry.translated|escape('html') }}</strong>
<form id="idpselectform" method="get" action="{{ urlpattern }}"> <form id="idpselectform" method="get" action="{{ urlpattern }}">
<input type="hidden" name="entityID" value="{{ entityID|escape('html') }}" /> <input type="hidden" name="entityID" value="{{ entityID|escape('html') }}">
<input type="hidden" name="return" value="{{ return|escape('html') }}" /> <input type="hidden" name="return" value="{{ return|escape('html') }}">
<input type="hidden" name="returnIDParam" value="{{ returnIDParam|escape('html') }}" /> <input type="hidden" name="returnIDParam" value="{{ returnIDParam|escape('html') }}">
<input type="hidden" name="idpentityid" value="{{ faventry.entityid|escape('html') }}" /> <input type="hidden" name="idpentityid" value="{{ faventry.entityid|escape('html') }}">
<input type="submit" name="formsubmit" id="favouritesubmit" value="{{ '{disco:login_at}'|trans }} {{ faventry.translated|escape('html') }}" /> <input type="submit" name="formsubmit" id="favouritesubmit" value="{{ '{disco:login_at}'|trans }} {{ faventry.translated|escape('html') }}" autofocus>
</form> </form>
</div> </div>
{% endif %} {% endif %}
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
<div class="inlinesearch"> <div class="inlinesearch">
<p>Incremental search...</p> <p>Incremental search...</p>
<form id="idpselectform" method="get"> <form id="idpselectform" method="get">
<input class="inlinesearch" type="text" value="" name="query_{{ tab }}" id="query_{{ tab }}" /> <input class="inlinesearch" type="text" value="" name="query_{{ tab }}" id="query_{{ tab }}">
</form> </form>
</div> </div>
<div class="metalist" id="list_{{ tab }}"> <div class="metalist" id="list_{{ tab }}">
......
...@@ -4,10 +4,10 @@ ...@@ -4,10 +4,10 @@
{% block content %} {% block content %}
<form style="display: inline; margin: 0px; padding: 0px" action="{{ yesTarget|escape('html') }}"> <form style="display: inline; margin: 0px; padding: 0px" action="{{ yesTarget|escape('html') }}">
{% for name, value in yesData %} {% for name, value in yesData %}
<input type="hidden" name="{{ name|escape('html') }}" value="{{ value|escape('html') }}" /> <input type="hidden" name="{{ name|escape('html') }}" value="{{ value|escape('html') }}">
{% endfor %} {% endfor %}
<h3>{{ warning }}</h3> <h3>{{ warning }}</h3>
<p>{{ '{expirycheck:expwarning:expiry_date_text}'|trans }} {{ expireOnDate }}</p> <p>{{ '{expirycheck:expwarning:expiry_date_text}'|trans }} {{ expireOnDate }}</p>
<input type="submit" name="yes" id="yesbutton" value="{{ '{expirycheck:expwarning:btn_continue}'|trans }}" /> <input type="submit" name="yes" id="yesbutton" value="{{ '{expirycheck:expwarning:btn_continue}'|trans }}" autofocus>
</form> </form>
{% endblock %} {% endblock %}
...@@ -6,17 +6,13 @@ ...@@ -6,17 +6,13 @@
<p>{{ '{multiauth:multiauth:select_source_text}'| trans }}</p> <p>{{ '{multiauth:multiauth:select_source_text}'| trans }}</p>
<form action="{{ selfUrl|escape('html') }}" method="get"> <form action="{{ selfUrl|escape('html') }}" method="get">
<input type="hidden" name="AuthState" value="{{ authstate|escape('html') }} " /> <input type="hidden" name="AuthState" value="{{ authstate|escape('html') }} ">
<ul> <ul>
{% for key, source in sources %} {% for key, source in sources %}
{% set name = ('src-' ~ source.source64) %} {% set name = ('src-' ~ source.source64) %}
{% set button = ('button-' ~ source.source) %} {% set button = ('button-' ~ source.source) %}
<li class="{{ source.css_class|escape('html') }} authsource"> <li class="{{ source.css_class|escape('html') }} authsource">
{% if source.source == preferred %} <input type="submit" name="{{ name|escape('html') }}" id="{{ button|escape('html') }}" value="{{ source.text|escape('html') }}"{%- source.source == preferred %} autofocus{% endif -%}>
<input type="submit" name="{{ name|escape('html') }}" autofocus="autofocus" id="{{ button|escape('html') }}" value="{{ source.text|escape('html') }}" />
{% else %}
<input type="submit" name="{{ name|escape('html') }}" id="{{ button|escape('html') }}" value="{{ source.text|escape('html') }}" />
{% endif %}
{% if source.help %} {% if source.help %}
<p>{{ source.help|escape('html') }}</p> <p>{{ source.help|escape('html') }}</p>
{% endif %} {% endif %}
......
...@@ -7,11 +7,10 @@ ...@@ -7,11 +7,10 @@
<p>{% trans %}You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not <i>a tester</i> you probably got the wrong link, and should <b>not be here</b>.{% endtrans %}</p><br /> <p>{% trans %}You are now accessing a pre-production system. This authentication setup is for testing and pre-production verification only. If someone sent you a link that pointed you here, and you are not <i>a tester</i> you probably got the wrong link, and should <b>not be here</b>.{% endtrans %}</p><br />
{% for name,value in yesData %} {% for name,value in yesData %}
<input type="hidden" name="{{ name }}" value="{{ value }}" /> <input type="hidden" name="{{ name }}" value="{{ value }}">
{% endfor %} {% endfor %}
<p> <p>
<input type="submit" name="yes" class="pure-button pure-button-red" value="{{'Yes, I know I am accessing a pre-production system'|trans}}" /> <input type="submit" name="yes" class="pure-button pure-button-red" value="{{'Yes, I know I am accessing a pre-production system'|trans}}" autofocus>
</p> </p>
</form> </form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment