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">
|
2024-11-08 23:38:54 +01:00
|
|
|
<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 %}
|