This commit is contained in:
traveler 2025-04-17 17:29:05 -05:00
commit 5aa7d034f7
3292 changed files with 465160 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{% extends 'base.twig' %}
{% block content %}
<div class="card">
<div class="card-header">{{ lang.oauth2.authorize_app }}</div>
<div class="card-body">
{% if mailcow_cc_role == 'user' %}
<p>{{ lang.oauth2.scope_ask_permission }}:</p>
<dl class="dl-horizontal">
<dt>{{ lang.oauth2.profile }}</dt>
<dd>{{ lang.oauth2.profile_desc }}</dd>
</dl>
<form class="form-horizontal" autocapitalize="none" autocorrect="off" role="form" method="post">
<div class="row">
<div class="col-sm-10 text-center">
<button class="btn btn-success" name="authorized" type="submit" value="1">{{ lang.oauth2.permit }}</button>
<a href="#" class="btn btn-secondary" onclick="window.history.back()" role="button">{{ lang.oauth2.deny }}</a>
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
</div>
</div>
</form>
{% else %}
<p>{{ lang.oauth2.access_denied }}</p>
{% endif %}
</div>
</div>
{% endblock %}