vpnmanager/templates/two_factor/_wizard_actions.html

13 lines
419 B
HTML
Raw Normal View History

2019-01-17 16:26:53 +00:00
{% 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>