14 lines
416 B
HTML
14 lines
416 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<div class="card" style="max-width: 400px; margin: auto;">
|
|
<h2>Login</h2>
|
|
<form method="POST">
|
|
<label>Username</label>
|
|
<input type="text" name="username" required>
|
|
<label>Password</label>
|
|
<input type="password" name="password" required>
|
|
<button type="submit" class="btn">Login</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|