Add initial setup and admin page
This commit is contained in:
15
templates/login.html.tera
Normal file
15
templates/login.html.tera
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends "_layout" %}
|
||||
|
||||
{% block content %}
|
||||
<form class="m-3" method="POST" action="/login">
|
||||
<div class="mb-3">
|
||||
<label for="user" class="form-label">Username</label>
|
||||
<input type="username" class="form-control" id="user" name="username">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="pass" class="form-label">Password</label>
|
||||
<input type="password" class="form-control" id="pass" name="password">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Submit</button>
|
||||
</form>
|
||||
{% endblock content %}
|
||||
Reference in New Issue
Block a user