haikal/templates/two_factor/_wizard_actions.html
2025-07-15 17:27:03 +03:00

14 lines
532 B
HTML

{% load i18n %}
{% if cancel_url %}
<a href="{{ cancel_url }}" class="float-right btn btn-link">{% trans "Cancel" %}</a>
{% endif %}
{% if wizard.steps.prev %}
<button name="wizard_goto_step"
type="submit"
value="{{ wizard.steps.prev }}"
class="btn btn-phoenix-secondary">{% trans "Back" %}</button>
{% else %}
<button disabled name="" type="button" class="btn">{% trans "Back" %}</button>
{% endif %}
<button type="submit" class="btn btn-phoenix-primary">{% trans "Next" %}</button>