summaryrefslogtreecommitdiff
path: root/spring-boot/05-bank-rest-client/src/main/resources/templates/form.html
blob: 7927b929b9b376bd7e807b63393b4cbcd64632ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">

<head>
    <title>Check Account Balance</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>

<body>
	<h1>Form</h1>
    <form action="#" th:action="@{/acc}" th:object="${account}" method="post">
    	<p>Account number: <input type="text" th:field="*{accNo}" /></p>
        <p><input type="submit" value="Submit" /> <input type="reset" value="Reset" /></p>
    </form>
</body>

</html>