23 lines
796 B
HTML
23 lines
796 B
HTML
{% extends "base_login_page.html" %}
|
|
{% block content %}
|
|
<form action="/login?redirect={{ _p.redirect_uri }}" method="post">
|
|
<div>
|
|
<div class="form-floating">
|
|
<input name="login" type="text" required class="form-control" id="floatingName" placeholder="unsername"
|
|
value="{{ login }}">
|
|
<label for="floatingName">Email address or username</label>
|
|
</div>
|
|
|
|
<div class="form-floating">
|
|
<input name="password" type="password" required class="form-control" id="floatingPassword"
|
|
placeholder="Password">
|
|
<label for="floatingPassword">Password</label>
|
|
</div>
|
|
</div>
|
|
|
|
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign in</button>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|