mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-06-29 11:36:16 +00:00
Use reccommended database structure Switch to SQLite and update scheme along with it
24 lines
No EOL
852 B
HTML
24 lines
No EOL
852 B
HTML
{% extends 'layout.html' %}
|
|
|
|
{% block header %}
|
|
<img src="{{ url_for('static', filename='images/leaves.jpg') }}" alt="leaves" onload="imgFade(this)" style="display: none;"/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="app">
|
|
<h1>register</h1>
|
|
<div id="register" class="register">
|
|
<form method="post">
|
|
<label for="username">Username</label>
|
|
<input name="username" id="username" required>
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" id="password" required>
|
|
<input type="submit" value="Register">
|
|
</form>
|
|
|
|
{% for message in get_flashed_messages() %}
|
|
<div class="flash">{{ message }}</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |