minauthator/src/templates/pages/authorize.html

22 lines
550 B
HTML
Raw Normal View History

2024-10-22 18:31:49 +02:00
{% extends "layouts/base.html" %}
{% block body %}
<!-- Login form -->
{% if error %}
<div>
Error: {{ error }}
</div>
{% endif %}
<form id="authorize-form" method="post">
<h1>Do you authorize this app?</h1>
<ul>
<li>App name: </li>
<li>Permisions: read basics</li>
</ul>
<input type="hidden" name="client_id" value="" />
<input type="hidden" name="scope" value="" />
<input type="hidden" name="state" value="" />
2024-10-22 18:31:49 +02:00
<button type="submit" class="btn btn-primary">Authorize</button>
</form>
{% endblock %}