flask app for plurals to publicly share member lists

register.html 486B

12345678910111213141516171819
  1. {% extends 'base.html' %}
  2. {% block header %}
  3. <div class="title">{% block title %}Register{% endblock %}</div>
  4. {% endblock %}
  5. {% block content %}
  6. <div class="container">
  7. <form method="post">
  8. <label for="username">Username</label>
  9. <input name="username" id="username" required><br>
  10. <label for="password">Password</label>
  11. <input type="password" name="password" id="password" required><br>
  12. <input type="submit" value="Register">
  13. </form>
  14. </div>
  15. {% endblock %}