datatracker/ietf/templates/submit/search_submission.html
Henrik Levkowetz 5d8306cfc8 Merged in [9733] from lars@netapp.com:
First round of HTML fixes identified by test-crawl --vnu.
 - Legacy-Id: 9764
Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
2015-07-18 08:55:30 +00:00

36 lines
821 B
HTML

{% extends "submit/submit_base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Submission status{% endblock %}
{% block submit_content %}
{% origin %}
{% bootstrap_messages %}
<p>
Please enter the name of the Internet-Draft you wish to view the
submission status of.
</p>
<form method="post">
{% csrf_token %}
{% if error %}
<p class="alert alert-danger">{{ error }}</p>
{% endif %}
<div class="form-group">
<label>I-D name</label>
<input type="text" class="form-control" placeholder="draft-..." name="name" value="{{ name|default:"" }}">
</div>
{% buttons %}
<input class="btn btn-primary" type="submit" value="See status">
{% endbuttons %}
</form>
{% endblock %}