Files
powerfulcomputermanager/admin/templates/login.tmpl

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 %}