17 lines
600 B
HTML
17 lines
600 B
HTML
{% extends 'layout.html' %}
|
|
{% block title %}Login{% endblock %}
|
|
{% block content %}
|
|
<div class="center-box">
|
|
<div class="center-box-content m-2 center">
|
|
<h1>Login</h1>
|
|
<form method="POST" class="form-control m-auto">
|
|
<label>Username:</label>
|
|
<input type="text" name="username" required>
|
|
<label>Password:</label>
|
|
<input type="password" name="password" required>
|
|
<button type="submit" class="btn btn-success">Login</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|