2025-03-18 17:50:06 +04:00

33 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd">
<html xmlns:th="http://www.thymeleaf.org" lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Правила расчета БРС</title>
<link th:href="@{/webjars/bootstrap/5.3.0-alpha1/css/bootstrap.min.css}" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<h2 class="mb-4">Правила расчета БРС</h2>
<form action="#" method="post">
<div class="mb-3">
<label for="courseWorkWeight" class="form-label">Вес курсовой работы (%)</label>
<input type="number" class="form-control" id="courseWorkWeight" name="courseWorkWeight"
th:value="${courseWorkWeight}">
</div>
<div class="mb-3">
<label for="researchWeight" class="form-label">Вес научных исследований (%)</label>
<input type="number" class="form-control" id="researchWeight" name="researchWeight"
th:value="${researchWeight}">
</div>
<div class="mb-3">
<label for="publicationsWeight" class="form-label">Вес публикаций (%)</label>
<input type="number" class="form-control" id="publicationsWeight" name="publicationsWeight"
th:value="${publicationsWeight}">
</div>
<button type="submit" class="btn btn-primary">Сохранить правила</button>
</form>
</div>
<script th:src="@{/webjars/bootstrap/5.3.0-alpha1/js/bootstrap.bundle.min.js}"></script>
</body>
</html>