mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 13:23:41 -05:00
24 lines
881 B
HTML
24 lines
881 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}Admin Login{% endblock %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-lg-4 m-auto mt-5">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h2 class="text-center mb-4 mt-2">Login to {{ cfg.instance.title }}</h2>
|
|
<form action="{{ url_for('admin.login') }}" method="POST">
|
|
<div class="form-floating mb-2">
|
|
<input type="password" required class="form-control" id="admin_password" name="admin_password" placeholder="Password">
|
|
<label for="admin_password">Password</label>
|
|
</div>
|
|
<div class="form-check mb-3">
|
|
<input type="checkbox" class="form-check-input" id="remember_me" name="remember_me" checked>
|
|
<label class="form-check-label" for="remember_me">Stay logged in</label>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary w-100">Login</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|