Files
asugak/templates/createCommision.html
2024-06-11 21:55:16 +03:00

68 lines
1.4 KiB
HTML
Raw Permalink 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Создать комиссию</title>
</head>
<body>
<div class="row">
<label>ГЭК №</label>
<input type="text" name="myInput" size="30" required id="gaknumber">
</div>
<div class="row">
<label>Председатель</label>
<select id="predesdatel">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Участник1</label>
<select id="uchgak1">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Участник2</label>
<select id="uchgak2">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Участник3</label>
<select id="uchgak3">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Участник4</label>
<select id="uchgak4">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Секретарь</label>
<select id="secretar">
<option>--Выбери--</option>
</select>
</div>
<button type="button" id="addcom">
Добавить ГЭК
</button>
</body>
<script src="{{url_for('static', filename='js/jquery-3.7.1.js')}}"></script>
<script src="{{url_for('static', filename='js/createcommision.js')}}"></script>
</html>