Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- {% extends "base.html" %}
-
- {% block content %}
- <h1>{% block title %} Login {% endblock %}</h1>
- <form method="POST" action="/login">
- <div class="mb-3 mt-3">
- <input class="form-control" type="email" name="email" placeholder="Your Email" autofocus="">
- </div>
-
- <div class="mb-3 mt-3">
- <input class="form-control" type="password" name="password" placeholder="Your Password">
- </div>
- <div class="mb-3 mt-3">
- <label class="checkbox">
- <input type="checkbox">
- Remember me
- </label>
- </div>
- <button class="btn btn-primary">Login</button>
- </form>
- {% endblock %}
|