This repository has been archived on 2022-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
microservices/forum/templates/register.html

19 lines
711 B
HTML

{% block body %}
<br>
<div id="login-box">
<div class="items">
<h1>Register</h1>
<form action="/register/" method="post"> {% csrf_token %}
<input type="text" name="username" placeholder="Username" />
<input type="email" name="email" placeholder="E-mail" />
<input type="text" name="first_name" placeholder="First Name" />
<input type="text" name="last_name" placeholder="Last Name" />
<input type="password" name="password" placeholder="Password" />
<input type="password" name="confirm_password" placeholder="Confirm your password" />
<input type="submit" name="signup_submit" value="Register" />
</div>
</div>
{% endblock %}