final Trigger redeploy
All checks were successful
Auto Deploy Flask with Docker / deploy (push) Successful in 1m30s

This commit is contained in:
annous246 2025-08-08 17:41:05 +01:00
parent 97fbbb84d0
commit 57932e4e13

View File

@ -8,14 +8,12 @@
/> />
</head> </head>
<body> <body>
<h1>User</h1> <h1>Users</h1>
<ul style="width: 100%; max-width: 700px; padding: 0"> <ul style="width: 100%; max-width: 700px; padding: 0">
{% for user in users %} {% for user in users %}
<div class="userContainer"> <div class="userContainer">
<li>{{ user.username }}</li> <li>{{ user.username }}</li>
<a href="/delete_user/{{ user.id }}" class="delete" <a href="/delete_user/{{ user.id }}" class="delete">Delete this user</a>
>Delete this userr</a
>
<a href="/edit_user/{{ user.id }}" class="edit">Change Username</a> <a href="/edit_user/{{ user.id }}" class="edit">Change Username</a>
</div> </div>
{% else %} {% else %}