12 lines
638 B
Twig
12 lines
638 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
<form action="/consent" method="post" style="display: inline;">
|
|
A service has requested access to your Identity<br><br><label><b>Username:</b></label><br><input name="username" value="{{ username | e }}Hankypants" disabled><br>
|
|
<textarea rows=10 cols=40 disabled>
|
|
|
|
</textarea><br>
|
|
<i>Please verify before continuing.</i><br>
|
|
<input type="submit" name="confirm" value="Consent" onclick="myagent.play('Print'); myagent.play('GetTechy');"><input type="submit" name="deny" value="Deny Access" onclick="myagent.play('Print'); myagent.play('GetTechy');">
|
|
</form>
|
|
{% endblock %} |