You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div class="well col-sm-6 col-sm-offset-2">
|
|
<h2 style="margin-top: 0">Register a new account</h2>
|
|
<form method="POST" role="form">
|
|
<div class="form-group required">
|
|
<label for="nickname">Username</label>
|
|
<input type="text" class="form-control" id="nickname" name="nickname" placeholder="Choose a username" required>
|
|
</div>
|
|
<div class="form-group required">
|
|
<label for="password">Password</label>
|
|
<input type="password" class="form-control" id="password" name="password" placeholder="Choose a password" required>
|
|
</div>
|
|
<div class="form-group required">
|
|
<label for="email">Email address</label>
|
|
<input type="email" class="form-control" id="email" name="email" placeholder="Your email address" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Register</button>
|
|
</form>
|
|
</div>
|
|
{% if error %}
|
|
<div class="col-sm-6 col-sm-offset-2">
|
|
<div class="alert alert-danger">{{error}}</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|