Skip to content
Snippets Groups Projects
Verified Commit ce484b16 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Fix button order

parent 87cda3a7
No related branches found
No related tags found
1 merge request!415Resolve "Serve as OAuth2 and OpenID Connect provider"
Pipeline #7125 passed with warnings
......@@ -13,9 +13,9 @@
<form method="post">
{% csrf_token %}
{% form form=form %}{% endform %}
{% include "core/partials/save_button.html" %}
<a class="btn waves-effect red waves-light" href="{% block app-form-back-url %}{% url "oauth_detail" application.id %}{% endblock app-form-back-url %}">
<i class="material-icons left">clear</i> {% trans "Cancel"%}
</a>
{% include "core/partials/save_button.html" %}
</form>
{% endblock %}
......@@ -28,12 +28,12 @@
{% csrf_token %}
{% form form=form %}
{% endform %}
<a class="btn red waves-effect waves-light btn-margin" href="{% block app-form-back-url %}{% url "oauth_detail" application.id %}{% endblock app-form-back-url %}">
<i class="material-icons left">cancel</i> {% trans "Disallow" %}
</a>
<button type="submit" class="btn green waves-effect waves-light btn-margin">
<i class="material-icons left">done_all</i> {% trans "Allow" %}
</button>
<a class="btn red waves-effect waves-light btn-margin" href="{% block app-form-back-url %}{% url "oauth_detail" application.id %}{% endblock app-form-back-url %}">
<i class="material-icons left">cancel</i> {% trans "Disallow" %}
</a>
</form>
</div>
</div>
......
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