bookwyrm/fedireads/templates/register.html
2020-01-28 19:05:59 -08:00

24 lines
669 B
HTML

{% extends 'layout.html' %}
{% block content %}
<div id="content">
<div>
<form name="register" method="post">
<label for="username">Username:
<input type="text" name="username"></input>
</label>
<label for="email">Email address:
<input type="text" name="email"></input>
</label>
<label for="password">Password:
<input type="password" name="password"></input>
</label>
<button type="submit">Create account</button>
</form>
<a href="/login/">Log in with existing account</a>
</div>
</div>
{% endblock %}