30 lines
785 B
HTML
30 lines
785 B
HTML
<!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>
|
|
<label>
|
|
<input type="checkbox" value="yes" id="secretar">
|
|
Секретарь
|
|
</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> |