Move login templates to a specific folder
This commit is contained in:
22
templates/login/login.html
Normal file
22
templates/login/login.html
Normal file
@ -0,0 +1,22 @@
|
||||
{% extends "base_login_page.html" %}
|
||||
{% block content %}
|
||||
<form action="/login?redirect={{ 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 %}
|
Reference in New Issue
Block a user