Initial commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user