35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd">
|
|
<html xmlns:th="http://www.thymeleaf.org"
|
|
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">
|
|
<form action="#" th:action="@{/newRepo}" th:object="${repoForm}" method="post">
|
|
<p style="color:red" th:text="${error}"></p>
|
|
<p><b>Ваш git репозиторий:</b><br>
|
|
<input type="text" size="40" th:field="*{repo}">
|
|
</p>
|
|
<p>
|
|
<input type="submit" name="send" value="Отправить"/>
|
|
</p>
|
|
<p>Ветки:<br>
|
|
<select id="select-branch" class="selectpicker" data-live-search="true" th:field="*{branch}">
|
|
<option th:each="branch : ${branches}"
|
|
th:value="${branch.name}"
|
|
th:utext="${branch.name}"/>
|
|
</option>
|
|
</select>
|
|
</p>
|
|
<p>
|
|
<input type="submit" name="next" value="Продолжить"/>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
<script>
|
|
$('#select-branch').selectpicker('refresh');
|
|
</script>
|
|
</html>
|