inital commit
This commit is contained in:
17
app/templates/login.html
Normal file
17
app/templates/login.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% extends "base.html"%}
|
||||
{% set title = "Login" %}
|
||||
{% block content %}
|
||||
<h3>TODO: </h3>
|
||||
<ul>
|
||||
<li>encrypt and salt passwords</li>
|
||||
</ul>
|
||||
<h1> Login </h1>
|
||||
{% if error %}
|
||||
<p>{{ error }}</p>
|
||||
{% endif %}
|
||||
<form name="login" method="post" action="/login">
|
||||
Username:<input type="text" name=username required placeholder="Username"><br>
|
||||
Passwort:<input type="password" name=password required placeholder="Password"><br>
|
||||
<input type="submit" value="Login">
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user