zero-to-axum/templates/signup.html
2025-07-22 13:28:22 -05:00

19 lines
378 B
HTML

<!DOCTYPE html>
<html lang="en">
<title>Signup</title>
{%if let Some(msg) = error %}
<p class="error">{{msg}}</p>
{% endif %}
<form method=post>
<label>
Email Address
<input type=text name=email>
</label>
<label>
Password
<input type=password name=password>
</label>
<button type="submit">Signup</button>
</form>
</html>