login.html
ASCII text
1{% extends "default.html" %} 2{% block title %}Log In | Echo Tracker{% endblock %} 3{% block content %} 4<main> 5<h1>Log In</h1> 6<form class="stacked-form" method="post"> 7<input type="text" name="username" placeholder="Username"> 8<input type="password" name="password" placeholder="Password"> 9<button type="submit">Log In</button> 10</form> 11</main> 12{% endblock %}