mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 22:52:22 +00:00
14 lines
352 B
HTML
14 lines
352 B
HTML
{% extends "layouts/default.html" %}
|
|
|
|
{% block imports %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>Authorize application to act on your behalf, {{ username }}?</p>
|
|
<form method="POST">
|
|
<label for="app_name">App name</label>
|
|
<input type="text" value="{{ app_name }}" name="app_name"/>
|
|
<button type="submit">Authorize</button>
|
|
</form>
|
|
{% endblock %}
|