work started
This commit is contained in:
60
adminpage.html
Normal file
60
adminpage.html
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<!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" type='text/css' href="css/style.css">
|
||||||
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||||
|
<title>PROGULASU</title>
|
||||||
|
<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="1">Лаборант</option>
|
||||||
|
<option value="2">Инженер</option>
|
||||||
|
<option value="3">Ведущий инженер</option>
|
||||||
|
<option value="4">Сальный</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||||||
|
</form>
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
7
css/bootstrap.min.css
vendored
Normal file
7
css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
css/bootstrap.min.css.map
Normal file
1
css/bootstrap.min.css.map
Normal file
File diff suppressed because one or more lines are too long
63
css/style.css
Normal file
63
css/style.css
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background-color: #f5f1d5
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.h1header {
|
||||||
|
margin: 0;
|
||||||
|
background-color: #4a849f;
|
||||||
|
height: 100px;
|
||||||
|
line-height: 100px;
|
||||||
|
text-align: center;
|
||||||
|
color: black;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.h1 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tg {
|
||||||
|
padding-top: 35px;
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tg td {
|
||||||
|
border-color: black;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 10px 5px;
|
||||||
|
word-break: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tg th {
|
||||||
|
border-color: black;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: normal;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 10px 5px;
|
||||||
|
word-break: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tg .tg-0pky {
|
||||||
|
border-color: inherit;
|
||||||
|
text-align: left;
|
||||||
|
vertical-align: top
|
||||||
|
}
|
||||||
|
|
||||||
|
.card{
|
||||||
|
margin-top: 40px;
|
||||||
|
}
|
||||||
39
index.html
Normal file
39
index.html
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
<!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" type='text/css' href="css/style.css">
|
||||||
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||||
|
<title>PROGULASU</title>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1 class="h1header"> Пропущенные дежурства АСУ </h1>
|
||||||
|
</header>
|
||||||
|
<div class="container">
|
||||||
|
<h1>Количество и даты пропущенных дежурств УВП кафедры АСУ </h1>
|
||||||
|
</div>
|
||||||
|
<div class="container">
|
||||||
|
<table class="table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>ФИО</th>
|
||||||
|
<th>Кол-во дежурств</th>
|
||||||
|
<th>Даты</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Сальный А.Г.</td>
|
||||||
|
<td>0</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user