mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-02-09 13:24:22 +00:00
![Hidden Z](/assets/img/avatar_default.png)
Separate "templates/local/" directory doesn't make sense because most of reg services will use own templates for most pages.
12 lines
261 B
HTML
12 lines
261 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% include "policy.html" %}
|
|
<form action="/postkey/" method="post">
|
|
{% csrf_token %}
|
|
<h3>Enter your domain details</h3>
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
{% endblock %}
|