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