Initial commit
This commit is contained in:
29
all_paw_care/templates/user/user_create.html
Normal file
29
all_paw_care/templates/user/user_create.html
Normal file
@@ -0,0 +1,29 @@
|
||||
{% extends "jinja/types/form.html" %}
|
||||
|
||||
{% set title %}Create user account{% endset %}
|
||||
|
||||
{% block content %}
|
||||
<form method="POST">
|
||||
<div class="row text-center my-4">
|
||||
<h1 class="text-primary">
|
||||
Create user account
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="input-group mx-2">
|
||||
<span class="input-group-text">Username</span>
|
||||
<input class="form-control" type="text"
|
||||
name="username" id="username" required>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row m-2">
|
||||
<button class="btn btn-primary" type="submit"
|
||||
action="{{ url_for('users.user_create') }}" method="post">
|
||||
Login
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user