2023-11-10 17:10:24 +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='Kunden bearbeiten')}">
|
2023-11-10 17:10:24 +01:00
|
|
|
<head>
|
|
|
|
<title>Kunde Bearbeiten</title>
|
|
|
|
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
th:href="@{/resources/css/customer/edit-style.css}"
|
|
|
|
/>
|
|
|
|
</head>
|
|
|
|
<body>
|
2023-11-13 20:09:39 +01:00
|
|
|
<section layout:fragment="content">
|
|
|
|
<div class="edit-customer-form">
|
|
|
|
<h2>Kunde Bearbeiten</h2>
|
2023-11-11 17:56:01 +01:00
|
|
|
<form method="post">
|
|
|
|
<h3>Nutzername</h3>
|
|
|
|
<input type="text" name="username" th:value="${customer.username}"/>
|
|
|
|
<h3>Addresse</h3>
|
|
|
|
<input type="text" name="address" th:value="${customer.address}"/>
|
2023-11-13 20:09:39 +01:00
|
|
|
<button type="submit">Save</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</section>
|
2023-11-10 17:10:24 +01:00
|
|
|
</body>
|
|
|
|
</html>
|