mirror of
https://gitlab.com/JKANetwork/powerfulcomputermanager.git
synced 2026-02-22 13:03:43 +01:00
17 lines
502 B
Cheetah
17 lines
502 B
Cheetah
{# -*- coding: utf-8 -*- #}
|
|
{% extends 'baseadmin.tmpl' %}
|
|
{% block content %}
|
|
<h2>Login</h2>
|
|
<form action="/login" method="POST">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-sm">
|
|
<tr>
|
|
<td>Password<input type="password" name="password" id="password" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td><button type="submit">Login</button></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
{% endblock %} |