feat(users): adds users module

This commit is contained in:
2024-11-02 19:10:24 -03:00
parent d500f36299
commit edc75fa27e
5 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{% extends "layout/layout.html" %}
{% block title %} Users {% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<h1>User's page!</h1>
{% endblock %}