Skip to content
Snippets Groups Projects
buchung.html 1.36 KiB
<!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 class="container" style="background-image: url('photos/background.jpg'); background-repeat:no-repeat; background-size:100%;" >

	<div class="container-fluid">
		<h1><img th:src="@{/photos/logo.png}" alt="Logo" width="470" height="150"/></h1>
	</div>
	
			

	<nav th:include="menu::menu"></nav>
	<div class="container-fluid"><h2 th:text="${title3}">Formular</h2></div>
	
		<form method="post" action="save2" th:object="${buchung}">
			<div class="two-fields">
			 <div><input type="hidden" name="id" th:value="*{id}" /></div>
			<div class="field required">
				<label for="belegtvon">check in date</label>
				
				<input type="text" class="form-control" id="belegtvon"
					placeholder="belegtvon" name="belegtvon" th:value="*{belegtvon}" />
			</div>
			<div class="field required">
				<label for="belegtbis">check out date</label>
				
				<input type="text" class="form-control" id="belegtbis"
					placeholder="belegtbis" name="belegtvon" th:value="*{belegtvon}" />
			</div>
			
			</div> 
			<div class="container-fluid">
			<button type="submit" class="btn btn-default">Buchen ?</button>
			<a class="navbar-brand" th:href="@{~/welcome}">zurück Home </a>
			</div>
		</form>
	
	<div th:include="foot::foot"></div>
	
</body>
</html>