1
0
Fork 0

Basic authentication views

This commit is contained in:
Mouse Reeve 2020-01-25 15:25:19 -08:00
parent 4c4011ba75
commit a312791259
13 changed files with 322 additions and 24 deletions

View file

@ -0,0 +1,8 @@
{% extends 'layout.html' %}
{% block content %}
<form name="login" method="post">
<input type="text" name="username"></input>
<input type="password" name="password"></input>
<input type="submit"></input>
</form>
{% endblock %}