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.

token-new.twig 895B

1234567891011121314151617181920212223242526
  1. {% if error %}
  2. <div class="box pad">
  3. <div class="important">{{ error }}</div>
  4. </div>
  5. {% endif %}
  6. <div class="box pad">
  7. <p>
  8. Use this page to generate new API tokens. When the token is shown to you is the only time the token
  9. will be visible, so be sure to copy it down. You, nor staff, will be able to view the value for
  10. any previously generation token.
  11. <br /><br />
  12. <strong class="important_text">Treat your tokens like passwords and keep them secret.</strong>
  13. </p>
  14. </div>
  15. <div class="box box2">
  16. <form action="user.php?action=token&amp;do=generate&amp;user_id={{ id }}" method="POST">
  17. <div class="pad">
  18. Name: <input type='text' name='token_name' value='{{ token_name }}' required />
  19. </div>
  20. <div class="center pad">
  21. <input type='submit' value='Generate' />
  22. </div>
  23. </form>
  24. </div>