19 lines
552 B
HTML
19 lines
552 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Login to What 2 Watch, Bish{% endblock %}
|
|
|
|
{% block header %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>
|
|
<form action="/login" enctype="application/x-www-form-urlencoded" method="post">
|
|
<label for="username">Username</label>
|
|
<input type="text" name="username" id="username" minlength="1" maxlength="20" required></br>
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" id="password" required></br>
|
|
<input type="submit" value="Signup">
|
|
</form>
|
|
</p>
|
|
|
|
{% endblock %}
|