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

Fix syntax-error in consent form

parent f353ea70
No related branches found
No related tags found
No related merge requests found
...@@ -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"{%- if autofocus == 'yesbutton'%} autofocus{% endif %-}>{{ '{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"{%- if autofocus == 'nobutton'%} autofocus{% endif %-}>{{ '{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 %}
......
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