fancy button

This commit is contained in:
Anthony Stirling 2024-06-06 21:27:58 +01:00
parent d36a59442f
commit 4c9c0207ba
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ spring.servlet.multipart.max-file-size=2000MB
spring.servlet.multipart.max-request-size=2000MB spring.servlet.multipart.max-request-size=2000MB
server.servlet.session.tracking-modes=cookie server.servlet.session.tracking-modes=cookie
server.servlet.context-path=/pdf server.servlet.context-path=${SYSTEM_ROOTURIPATH:/}
spring.devtools.restart.enabled=true spring.devtools.restart.enabled=true
spring.devtools.livereload.enabled=true spring.devtools.livereload.enabled=true

View file

@ -34,7 +34,7 @@
<td th:text="#{${user.roleName}}"></td> <td th:text="#{${user.roleName}}"></td>
<td> <td>
<form th:if="${user.username != currentUsername}" th:action="@{'/api/v1/user/admin/deleteUser/' + ${user.username}}" method="post"> <form th:if="${user.username != currentUsername}" th:action="@{'/api/v1/user/admin/deleteUser/' + ${user.username}}" method="post">
<button type="submit" th:text="#{delete}">Delete</button> <button class="btn btn-danger" type="submit" th:text="#{delete}">Delete</button>
</form> </form>
</td> </td>
<td th:text="${user.authenticationType}"></td> <td th:text="${user.authenticationType}"></td>