Advertisement
ksieradzinski

Untitled

Feb 28th, 2025
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>Rejestracja</h1>
  4. <form method="POST" action="">
  5. {{ form.hidden_tag() }}
  6. <div class="mb-3">
  7. {{ form.email.label(class="form-label") }}
  8. {{ form.email(class="form-control", placeholder="Wprowadź adres e-mail") }}
  9. </div>
  10. <div class="mb-3">
  11. {{ form.password.label(class="form-label") }}
  12. {{ form.password(class="form-control", placeholder="Wprowadź hasło") }}
  13. </div>
  14. <div class="mb-3">
  15. {{ form.confirm_password.label(class="form-label") }}
  16. {{ form.confirm_password(class="form-control", placeholder="Potwierdź hasło") }}
  17. </div>
  18. <div class="mb-3">
  19. {{ form.submit(class="btn btn-primary") }}
  20. </div>
  21. </form>
  22. {% endblock %}
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement