feat: challenge solving instructions page
This commit is contained in:
parent
10d34ed240
commit
2785d04f03
1 changed files with 24 additions and 0 deletions
24
templates/pages/auth/challenge.html
Normal file
24
templates/pages/auth/challenge.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
{% extends 'base' %}
|
||||
{% block title %} {{ title }} {% endblock %}
|
||||
{% block nav %} {% include "pub_nav" %} {% endblock %}
|
||||
|
||||
{% block main %}
|
||||
<section class="main">
|
||||
<h1>Configure DNS To Prove ownership</h1>
|
||||
<ol>
|
||||
<li>
|
||||
<p>Create the following record on DNS<br>
|
||||
<code>TXT {{ payload.key }} {{ payload.value }}</code>
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Click verify to verify challenge
|
||||
<form action="{{ page.auth.verify }}" method="POST">
|
||||
<input type="hidden" name="hostname" id="hostname" value="{{ payload.key }}">
|
||||
<button type="submit">Verify</button>
|
||||
</form>
|
||||
</p>
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue