14 lines
519 B
HTML
14 lines
519 B
HTML
{% extends 'base.html' %}
|
|
{% block body %}
|
|
<h1>Welcome to Vanth</h1>
|
|
<h2>Please log in</h2>
|
|
<form action="/login/" method="POST">
|
|
<div class="form-group">
|
|
<label for="username">username</label>
|
|
<input id="username" type="text" name="username" class="form-control"></input>
|
|
<label for="password">password</label>
|
|
<input id="password" type="password" name="password" class="form-control"></input>
|
|
<input class="btn btn-primary" type="submit" value="Log in" class="form-control"></input>
|
|
</form>
|
|
{% endblock %}
|