signup.html
ASCII text
1{% extends "default.html" %} 2{% block title %}Sign Up | Echo Tracker{% endblock %} 3{% block content %} 4<main> 5<h1>Sign Up</h1> 6{% with messages = get_flashed_messages() %} 7{% if messages %} 8{% for message in messages %} 9<div class="alert">{{ message }}</div> 10{% endfor %} 11{% endif %} 12{% endwith %} 13<form class="stacked-form" method="post"> 14<input type="text" name="username" placeholder="Username"> 15<input type="password" name="password" placeholder="Password"> 16<input type="password" name="password2" placeholder="Password (again)"> 17<button type="submit">Sign Up</button> 18</form> 19</main> 20{% endblock %}