2020-08-17 09:53:30 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="ui segment">
|
2020-08-14 11:18:08 +00:00
|
|
|
<p>The application <strong>{{grant.client.client_name}}</strong> is requesting:
|
|
|
|
<strong>{{ grant.request.scope }}</strong>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
from You - a.k.a. <strong>{{ user.username }}</strong>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<form action="" method="post">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" name="confirm">
|
|
|
|
<span>Consent?</span>
|
|
|
|
</label>
|
|
|
|
{% if not user %}
|
|
|
|
<p>You haven't logged in. Log in with:</p>
|
|
|
|
<div>
|
|
|
|
<input type="text" name="username">
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<br>
|
|
|
|
<button>Submit</button>
|
|
|
|
</form>
|
2020-08-17 09:53:30 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|