19 lines
605 B
HTML
19 lines
605 B
HTML
|
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd">
|
||
|
<html
|
||
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||
|
layout:decorate="~{default}">
|
||
|
<head>
|
||
|
<title>Простая обработка формы на Spring MVC</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||
|
</head>
|
||
|
<div class="container" layout:fragment="content">
|
||
|
<body>
|
||
|
<form oninput="result">
|
||
|
<p>Данные репозитория:</p>
|
||
|
<p>
|
||
|
<output name="result"></output>
|
||
|
</form>
|
||
|
</body>
|
||
|
</div>
|
||
|
</html>
|