2023-08-13 02:12:29 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html th:lang="${#locale.toString()}" th:lang-direction="#{language.direction}" xmlns:th="http://www.thymeleaf.org">
|
|
|
|
|
2023-08-17 01:10:14 +02:00
|
|
|
<th:block th:insert="~{fragments/common :: head(title=#{adminUserSettings.title})}"></th:block>
|
2023-08-13 02:12:29 +02:00
|
|
|
|
|
|
|
<body>
|
|
|
|
<th:block th:insert="~{fragments/common :: game}"></th:block>
|
|
|
|
<div id="page-container">
|
|
|
|
<div id="content-wrap">
|
|
|
|
<div th:insert="~{fragments/navbar.html :: navbar}"></div>
|
|
|
|
<br> <br>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-8">
|
|
|
|
|
|
|
|
<!-- User Settings Title -->
|
2023-08-17 01:10:14 +02:00
|
|
|
<h2 class="text-center" th:text="#{adminUserSettings.header}">Admin User Control Settings</h2>
|
2023-08-15 01:39:13 +02:00
|
|
|
|
2023-08-13 02:12:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Username</th>
|
|
|
|
<th>Roles</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr th:each="user : ${users}">
|
|
|
|
<td th:text="${user.username}"></td>
|
|
|
|
<td th:text="${user.getRolesAsString()}"></td>
|
|
|
|
<td>
|
2023-08-17 01:10:14 +02:00
|
|
|
<a th:href="@{'/admin/deleteUser/' + ${user.username}}" th:text="#{delete}">Delete</a>
|
2023-08-13 02:12:29 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
<h2>Add New User</h2>
|
|
|
|
<form action="/admin/saveUser" method="post">
|
|
|
|
<div class="form-group">
|
2023-08-17 01:10:14 +02:00
|
|
|
<label for="username" th:text="#{username}">Username</label>
|
2023-08-13 02:12:29 +02:00
|
|
|
<input type="text" class="form-control" name="username" required>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2023-08-17 01:10:14 +02:00
|
|
|
<label for="password" th:text="#{password}">Password</label>
|
2023-08-13 02:12:29 +02:00
|
|
|
<input type="password" class="form-control" name="password" required>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="role">Role</label>
|
|
|
|
<select name="role" class="form-control" required>
|
2023-08-17 01:10:14 +02:00
|
|
|
<option value="ROLE_ADMIN" th:text="#{adminUserSettings.admin}">Admin</option>
|
|
|
|
<option value="ROLE_USER" th:text="#{adminUserSettings.user}">User</option>
|
|
|
|
<option value="ROLE_LIMITED_API_USER" th:text="#{adminUserSettings.apiUser}">Limited API User</option>
|
|
|
|
<option value="ROLE_WEB_ONLY_USER" th:text="#{adminUserSettings.webOnlyUser}">Web Only User</option>
|
2023-08-13 02:12:29 +02:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Add other fields as required -->
|
2023-08-17 01:10:14 +02:00
|
|
|
<button type="submit" class="btn btn-primary" th:text="#{adminUserSettings.submit}">Save User</button>
|
2023-08-13 02:12:29 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|