-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewEC.html
48 lines (47 loc) · 1.29 KB
/
viewEC.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles2.css') }}">
<title>View total Employees</title>
<style>
body{
background-color: #FFEBEB;
}
table {
border: solid black;
border-collapse:collapse;
width: 100%;
}
th, td {
padding: 8px;
font-size: 20px;
text-align: left;
border: solid black;
}
input[type=text] {
width: 30%;
padding: 12px 20px 12px 12px;
margin: auto;
box-sizing: border-box;
border: 2px solid black;
border-radius: 4px;
font-size: 16px;
/* text-align: center;
display: flex;
justify-content: center;
align-items: center; */
}
label{
font-size: 40px; font-weight: bold;
}
</style>
</head>
<body>
<h1 style="font-size: 40px; font-weight: bold; margin-left: 20px;"> Total No Of Employees : {{result}} </h1>
<form action="/operations" method="POST">
<button type="submit" style="position: fixed; top: 0; right: 0; margin: 10px;">
Back to home</button>
</form>
</body>
</html>