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.
25 lines
815 B
HTML
25 lines
815 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
{% blocktrans %}
|
|
<p>
|
|
You are trying to add a subdomain. Our policy permits subdomains registration only if you're own an
|
|
upper domain (2nd-level domain). Before subdomain will be added, we must ensure that you're own an upper-level
|
|
domain.
|
|
</p>
|
|
<p>
|
|
Unfortunately, we can verify a 2nd-level domain ownage only via http, so if you're use the domain not for http,
|
|
please run a webserver temporary. Create the following file in the webserver's document root and press "OK" button.
|
|
This file should be accessible via http://{{ topdomain }}/«filename» (without quotes).
|
|
</p>
|
|
{% endblocktrans %}
|
|
|
|
<form action="/postkey/subdomain/" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="OK" />
|
|
</form>
|
|
|
|
{% endblock %}
|