mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-08 22:07:55 +00:00
e3416c090e
Also update success_submission.html a little.
13 lines
305 B
HTML
13 lines
305 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
{% include "policy.html" %}
|
|
<form action="/postkey/" method="post">
|
|
{% csrf_token %}
|
|
<h3>{% trans "Enter your domain details" %}</h3>
|
|
{{ form.as_p }}
|
|
<input type="submit" value="{% trans "Submit" %}" />
|
|
</form>
|
|
{% endblock %}
|