vpnmanager/templates/two_factor/_wizard_actions.html
2019-01-17 17:26:53 +01:00

12 lines
419 B
HTML

{% load i18n %}
{% if cancel_url %}
<a href="{{ cancel_url }}"
class="pull-right btn btn-danger">{% trans "Cancel" %}</a>
{% endif %}
{% if wizard.steps.prev %}
<button name="wizard_goto_step" type="submit"
value="{{ wizard.steps.prev }}" formnovalidate
class="btn btn-info">{% trans "Back" %}</button>
{% endif %}
<button type="submit" class="btn btn-primary">{% trans "Next" %}</button>