add new func

This commit is contained in:
danamir
2024-06-09 17:13:08 +03:00
parent b9a71474df
commit 0bcde72bba
5 changed files with 124 additions and 0 deletions

26
templates/settnigs.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Настройки</title>
</head>
<body>
<h2>Добавить члена комиссии</h2>
<label>ФИО</label> <input type="text" name="myInput" size="30" required id="fio">
<label>
<input type="checkbox" value="yes" id="predsedatel">
Председатель
</label>
<label>
<input type="checkbox" value="yes" id="recentzent">
Рецензент
</label>
<button type="button" name="AddChlenKom" id="addbtn">
Добавить
</button>
</body>
<script src="{{url_for('static', filename='js/settings.js')}}"></script>
<script src="{{url_for('static', filename='js/jquery-3.7.1.js')}}"></script>
</html>