10 lines
492 B
PHP
10 lines
492 B
PHP
<?php declare(strict_types=1); ?>
|
|
<p>
|
|
<?= sprintf(_('To prove that you own this domain, it must have a NS record equal to %s when the form is being processed.'), '<code>' . getAuthToken() . '._domain-verification.' . SERVER_NAME . '.</code>') ?>
|
|
</p>
|
|
|
|
<form method="post">
|
|
<label for="domain"><?= _('Domain') ?></label><br>
|
|
<input required="" placeholder="domain.<?= PLACEHOLDER_DOMAIN ?>." id="domain" name="domain" type="text"><br>
|
|
<input type="submit" value="<?= _('Add') ?>">
|
|
</form>
|