datatracker/ietf/templates/oidc_provider/authorize.html
Lars Eggert eb5423d084
ci: Also check generated HTML with the "vnu" validator (#3682)
* ci: Also check generated HTML with the "vnu" validator

Because HTML Tidy apparently misses a bunch of errors.

* thead -> tbody

* More fixes

* More fixes

* Start checker in test runner
2022-03-21 12:50:23 -05:00

26 lines
940 B
HTML

{# Copyright The IETF Trust 2007, All Rights Reserved #}
{% extends "base.html" %}
{% load static %}
{% block title %}404 Not Found{% endblock %}
{% block content %}
<h1>Request for Permission</h1>
<p class="my-3">
Client <strong>{{ client.name }}</strong> would like to access this information
from your IETF database records:
</p>
<form method="post" action="{% url 'oidc_provider:authorize' %}">
{% csrf_token %}
{{ hidden_inputs }}
<ul>
{% for scope in scopes %}
<li>
<strong>{{ scope.name }}</strong>
<br>
<i>{{ scope.description }}</i>
</li>
{% endfor %}
</ul>
<input class="btn btn-primary" name="allow" type="submit" value="Authorize">
<input class="btn btn-secondary float-end" type="submit" value="Decline">
</form>
{% endblock %}