swt23w23/src/main/resources/templates/profile.html

49 lines
2.1 KiB
HTML
Raw Normal View History

2023-11-01 12:32:54 +01:00
<!DOCTYPE html>
2023-11-13 20:09:39 +01:00
<html xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout.html(title='Profil')}">
2023-11-01 12:32:54 +01:00
<head>
</head>
<body>
2023-11-15 17:27:04 +01:00
<div layout:fragment="content">
<div class="mb-4">
<form th:object="${profileForm}" th:action="@{/profile}" method="post">
<h2>Authentifizierung</h2>
2023-11-15 17:27:04 +01:00
<div class="mb-3">
<label class="form-label" for="username">Nutzername</label>
<input class="form-control" th:field="*{username}" th:errorclass="is-invalid" type="text" required>
<div th:if="${#fields.hasErrors('username')}" class="invalid-feedback">Ungültiger Nutzername</div>
2023-11-13 20:09:39 +01:00
</div>
2023-11-15 17:27:04 +01:00
<div class="mb-3">
<label class="form-label" for="password" th:text="Passwort"></label>
<input class="form-control" th:field="*{password}" th:errorclass="is-invalid" type="password">
<div th:if="${#fields.hasErrors('password')}" class="invalid-feedback">Ungültiges Passwort</div>
2023-11-15 17:27:04 +01:00
</div>
<h2>Nutzerinformationen</h2>
<div class="mb-3">
<label class="form-label" for="fullName">Name</label>
<input class="form-control" th:field="*{fullName}" th:errorclass="is-invalid" type="text" required>
<div th:if="${#fields.hasErrors('fullName')}" class="invalid-feedback">Ungültiger Name</div>
</div>
2023-11-15 17:27:04 +01:00
<div class="mb-3">
<label class="form-label" for="address">Adresse</label>
<textarea class="form-control" th:field="*{address}" th:errorclass="is-invalid" th:placeholder="*{address}" rows="3" required></textarea>
<div th:if="${#fields.hasErrors('address')}" class="invalid-feedback">Ungültige Addresse</div>
2023-11-15 17:27:04 +01:00
</div>
<button class="btn btn-primary" type="submit">Bearbeiten</button>
2023-11-15 17:27:04 +01:00
</form>
</div>
<div sec:authorize="hasRole('CUSTOMER')" class="card">
<div class="card-header text-danger">Danger Zone</div>
2023-11-15 17:27:04 +01:00
<div class="card-body">
<a th:href="@{/profile/disable}">
<button class="btn btn-danger" type="button">Account löschen</button>
2023-11-15 17:27:04 +01:00
</a>
2023-11-13 20:09:39 +01:00
</div>
2023-11-15 17:27:04 +01:00
</div>
</div>
2023-11-01 12:32:54 +01:00
</body>
</html>