datatracker/ietf/secr/templates/confirm_cancel.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

27 lines
761 B
HTML

{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Confirm Cancel{% endblock %}
{% block content %}
<div class="module draft-container">
<h2>Confirm Cancel</h2>
<h3>Are you sure?</h3>
<p>You are about to cancel: {{ object }}</p>
{% if extra %}<p>{{ extra }}</p>{% endif %}
<form method="post">{% csrf_token %}
<div>
<p>
<input type="hidden" name="post" value="yes">
<input type="submit" value="Yes, I'm sure">
<a href="#" onclick="history.go(-1);return false;" class="button cancel-link">Take me back</a>
</p>
</div>
</form>
</div> <!-- module -->
{% endblock %}