Mixonomer/music/templates/register.html

21 lines
816 B
HTML
Raw Normal View History

2019-08-03 21:35:08 +01:00
{% extends 'index.html' %}
{% block form %}
<div class="pad-3 card">
<h1 class="sectiontitle">register</h1>
<form name="register" action="/auth/register" method="POST" onsubmit="return handleRegister()">
<p class="center-text">username<br><input type="text" name="username" class="full-width"></p>
<p class="center-text">password<br><input type="password" name="password" class="full-width"></p>
<p class="center-text">password again<br><input type="password" name="password_again" class="full-width"></p>
<p id="status" style="display: none; color: red" class="center-text"></p>
<button class="button full-width" onclick="handleRegister()" type="submit">register</button>
</form>
<script src="{{ url_for('static', filename='js/register.bundle.js') }}"></script>
</div>
{% endblock %}