approval.php 451 B

1234567891011
  1. <?php declare(strict_types=1); ?>
  2. <p>
  3. <?= _('This form allows to use an approval key to validate your account. Approval keys are distributed by an administrator upon request.') ?>
  4. </p>
  5. <form method="post">
  6. <label for="key"><?= _('Approval key') ?></label><br>
  7. <input required="" id="key" size="33" name="key" type="text" placeholder="27b81fbd8277b11ed1cf03d476cec503">
  8. <br>
  9. <input type="submit" value="<?= _('Use for this account') ?>">
  10. </form>