23 lines
469 B
HTML
23 lines
469 B
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<title>Spring Utils Demo</title>
|
|
<style type="text/css">
|
|
.param{
|
|
color:green;
|
|
font-style: italic;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<form action="setParam" method="POST">
|
|
<h3>Set Parameter: </h3>
|
|
<p th:text="${parameter}" class="param"/>
|
|
<input type="text" name="param" id="param"/>
|
|
<input type="submit" value="SET"/>
|
|
</form>
|
|
<br/>
|
|
<a href="other">Another Page</a>
|
|
</body>
|
|
</html> |