19 lines
378 B
HTML
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>
|