Initial App Commit with Login and Auth
This commit is contained in:
13
app/views/users.html
Normal file
13
app/views/users.html
Normal file
@ -0,0 +1,13 @@
|
||||
{% extends "layouts/app.html" %}
|
||||
|
||||
{% block title %}Users List{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<a href="{{ url_for('main.logout_route') }}">Logout</a>
|
||||
<h2>Users List</h2>
|
||||
<ul>
|
||||
{% for user in users %}
|
||||
<li>{{ user.username }} - {{ user.email }} - {{ user.password }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user