25 lines
872 B
HTML
25 lines
872 B
HTML
{% extends "submit/submit_base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load django_bootstrap5 %}
|
|
{% block title %}Submission status{% endblock %}
|
|
{% block submit_content %}
|
|
{% origin %}
|
|
<p class="my-3">
|
|
Please enter the name of the Internet-Draft you wish to view the
|
|
submission status of.
|
|
</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<div class="mb-3">
|
|
<label class="form-label" for="name">I-D name</label>
|
|
<input type="text" class="form-control" id="name" name="name" placeholder="draft-..." required>
|
|
</div>
|
|
{% if error %}
|
|
<p class="alert alert-danger my-3">
|
|
{{ error }}
|
|
</p>
|
|
{% endif %}
|
|
<button class="btn btn-primary" type="submit">See status</button>
|
|
</form>
|
|
{% endblock %} |