summaryrefslogtreecommitdiff
path: root/spring-boot/05-bank-rest-client/src/main/resources/templates/result.html
blob: 15393be6d6fd2e5645791611d50d60ee85976d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!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>Result</h1>
    
    <p th:text="'Account number: ' + ${account.accountNumber}" />
    <p th:text="'Balance: ' + ${account.balance}" />
    
    <a href="/acc">Try again</a>
</body>
</html>