Files
ProgulAsuFlask/templates/adminpage.html
2022-10-31 19:10:35 +03:00

63 lines
2.3 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.min.css')}}">
<link rel="stylesheet" type='text/css' href="{{ url_for('static', filename='css/style.css')}} ">
<title>Админка прогулов</title>
</head>
<body>
<header>
<h1 class="h1header">
Прогульная админка
</h1>
</header>
<div class="container card ">
<h2>Добавить прогул</h2>
<label> Выберите сотрудника из списка ниже </label>
<select class="form-select" aria-label="Default select example">
<option value="1">Сальный А.Г.</option>
<option value="2">Талыкова К.Б.</option>
<option value="3">Ким Н.А.</option>
</select>
<label for="startDate">Выберите дату прогула</label>
<input id="startDate" class="form-control" type="date" />
<button type="button" class="btn btn-primary">Добавить</button>
</div>
<div class="container card">
<h2>
Добавить сотрудника
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">ФИО сотрудника</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Должность</label>
<select class="form-select" aria-label="Default select example">
<option value="laborant">Лаборант</option>
<option value="ingener">Инженер</option>
<option value="vedingener">Ведущий инженер</option>
<option value="4">Сальный</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</h2>
</div>
</body>
</html>