BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

passphrase.html 681B

123456789101112131415161718192021222324
  1. <input
  2. type="password"
  3. name="{{ name|default('password') }}"
  4. id="{{ id|default('password') }}"
  5. placeholder="{{ placeholder|default('passphrase') }}"
  6. minlength="{{ pw_min|default('15') }}"
  7. maxlength="{{ pw_max|default('10000') }}"
  8. pattern=".{ {{ pw_min }},{{ pw_max }} }"
  9. class="inputtext"
  10. autocomplete="off"
  11. required="required"
  12. />
  13. <strong id="pass_match"></strong>
  14. {% if advice == true %}
  15. <p>
  16. Any password {{ pw_min }} characters or longer is accepted, but a strong password
  17. <ul>
  18. <li>is a pass<em>phrase</em> of mixed case with many small words,</li>
  19. <li>that contains complex characters including Unicode and emoji.</li>
  20. </ul>
  21. </p>
  22. {% endif %}