Skip to content
Snippets Groups Projects
Commit ece2d892 authored by Johannes Wilhelm's avatar Johannes Wilhelm
Browse files

s

parent 2f0a97a4
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,10 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
......
<!DOCTYPE html>
<html lang="de" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head th:include="head::head"></head>
<body>
<nav th:include="menu::menu"></nav>
<body class="container" style="background-image: url('/photos/background.jpg'); background-position:center; background-repeat:no-repeat; background-size:cover;">>
<div class="container-fluid">
<h1><img th:src="@{/photos/logo.png}" alt="Logo" width="470" height="150"/></h1>
</div>
<div style="background-color: white; opacity:0.8;">
<nav th:include="menu::menu" ></nav>
</div>
<br>
<br>
<div style="background-color: white; opacity:1">
<div class="container-fluid">
<form method="GET" action="/buchung/delete">
<p>Buchung stornieren</p>
<h1>Buchung stornieren</h1>
<h3>Wenn Sie Ihre Buchung stornieren möchten, geben Sie bitte hier Ihre Buchungsbestätigungsnummer ein. Danach kehren Sie zur Home-Seite zurück.</h3>
<hr/>
<br>
<p>
<label for="buchungid">Buchungsbestätigungsnummer:</label>
<input type="text" name="buchungid" id="buchungid" size="25">
<input type="text" name="buchungid" id="buchungid" size="10">
<input type="submit" value="stornieren">
</p>
</form>
</div>
<br>
<br>
<div th:include="foot::foot"></div>
</div>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment