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

Fix syntax-error in multiauth

parent 800362a7
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
{% 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">
<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') }}" id="{{ button|escape('html') }}" value="{{ source.text|escape('html') }}"{%- if source.source == preferred %} autofocus{% endif -%}>
{% if source.help %} {% if source.help %}
<p>{{ source.help|escape('html') }}</p> <p>{{ source.help|escape('html') }}</p>
{% endif %} {% endif %}
......
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