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.

create.twig 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <table class="layout" cellpadding="2" cellspacing="2" border="0" align="center">
  2. <tr valign="top">
  3. <td align="right">Username</td>
  4. <td align="left">
  5. <input type="text" name="username" id="username" class="inputtext" placeholder="Username" value="{{ username }}" />
  6. <p>Use common sense when choosing your username. Offensive usernames may result in an instant ban.
  7. <br /><strong>Do not choose a username that can be associated with your real name.</strong> If you do so, we will not change it for you.</p>
  8. </td>
  9. </tr>
  10. <tr valign="top">
  11. <td align="right">Email address</td>
  12. <td align="left">
  13. <input type="email" name="email" id="email" class="inputtext" placeholder="Email" value="{{ email }}" />
  14. </td>
  15. </tr>
  16. <tr valign="top">
  17. <td align="right">Password</td>
  18. <td align="left">
  19. <input type="password" name="password" id="new_pass_1" class="inputtext" placeholder="Password" /> <strong id="pass_strength"></strong>
  20. </td>
  21. </tr>
  22. <tr valign="top">
  23. <td align="right">Verify&nbsp;password</td>
  24. <td align="left">
  25. <input type="password" name="confirm_password" id="new_pass_2" class="inputtext" placeholder="Verify password" /> <strong id="pass_match"></strong>
  26. <p>A strong password is 8 characters or longer, contains at least 1 lowercase and uppercase letter, and contains at least a number or a symbol, or is at least 20 characters.</p>
  27. </td>
  28. </tr>
  29. <tr valign="top">
  30. <td></td>
  31. <td align="left">
  32. <input type="checkbox" name="readrules" id="readrules" value="1"{{ readrules|checked }} />
  33. <label for="readrules">I will read and abide by the rules.</label>
  34. </td>
  35. </tr>
  36. <tr valign="top">
  37. <td></td>
  38. <td align="left">
  39. <input type="checkbox" name="readwiki" id="readwiki" value="1"{{ readwiki|checked }} />
  40. <label for="readwiki">I will read the wiki.</label>
  41. </td>
  42. </tr>
  43. <tr valign="top">
  44. <td></td>
  45. <td align="left">
  46. <input type="checkbox" name="agereq" id="agereq" value="1"{{ agereq|checked }} />
  47. <label for="agereq">I am 13 years of age or older.</label>
  48. </td>
  49. </tr>
  50. <td colspan="2" align="center"><br /><input type="submit" name="submit" value="Create my account" class="submit" /></td>
  51. </tr>
  52. </table>