swt23w23/src/main/resources/templates/edit-customer.html
Denis Natusch cd401219e2
Make user consistent with design model
Co-authored-by: Simon Bruder <simon.bruder@mailbox.tu-dresden.de>
2023-11-21 18:00:30 +01:00

30 lines
830 B
HTML

<!DOCTYPE html>
<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')}">
<head>
<meta charset="UTF-8" />
<title>Kunde Bearbeiten</title>
<link
rel="stylesheet"
th:href="@{/resources/css/customer/edit-style.css}"
/>
</head>
<body>
<section layout:fragment="content">
<div class="edit-customer-form">
<h2>Kunde Bearbeiten</h2>
<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}"/>
<button type="submit">Save</button>
</form>
</div>
</section>
</body>
</html>