2023-11-26 20:26:42 +00:00
|
|
|
{% extends "login/login.html" %}
|
2022-11-19 22:20:38 +00:00
|
|
|
{% block pagetitle %}Application Request for Access{% endblock %}
|
2022-05-04 23:09:46 +00:00
|
|
|
{% block content %}
|
2023-10-29 12:51:00 +00:00
|
|
|
<div id="auth-form">
|
2022-10-29 00:52:11 +00:00
|
|
|
<h2>{{application.app_name}}</h2>
|
2022-05-04 23:09:46 +00:00
|
|
|
<p class="mb-md-5">wants to access your @{{v.username}} account.</p>
|
|
|
|
<p class="mb-md-5">It will not be able to see your password, or change your account settings.</p>
|
|
|
|
<form action="/authorize" method="post" class="mt-md-3" id="login">
|
2024-03-01 17:03:21 +00:00
|
|
|
<input hidden name="formkey" value="{{v|formkey}}" class="notranslate" translate="no">
|
2023-08-22 23:59:17 +00:00
|
|
|
<input hidden name="scopes" value="{{scopes_txt}}">
|
|
|
|
<input hidden name="redirect_uri" value="{{redirect_uri}}">
|
|
|
|
<input hidden name="permanent" value="{{permanent}}">
|
|
|
|
<input hidden name="client_id" value="{{application.client_id}}">
|
|
|
|
<input hidden name="state" value="{{state}}">
|
|
|
|
<input type="submit" class="btn btn-primary" id="auth_button" value="Authorize {{application.app_name}}">
|
|
|
|
<a href="/" class="btn btn-secondary">No, back to {{SITE_NAME}}</a>
|
2022-05-04 23:09:46 +00:00
|
|
|
</form>
|
2023-10-29 12:51:00 +00:00
|
|
|
</div>
|
2022-10-29 00:52:11 +00:00
|
|
|
{% endblock %}
|