Gatekeeper/templates/consent.html.twig

12 lines
638 B
Twig
Raw Permalink Normal View History

2022-11-27 00:04:34 +01:00
{% 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>
2023-08-04 21:21:40 +02:00
</textarea><br>
2022-11-27 00:04:34 +01:00
<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 %}