-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewE.html
50 lines (50 loc) · 1.73 KB
/
viewE.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
49
50
<!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="{{ url_for('static', filename='styles2.css') }}">
<title>View Employees</title>
</head>
<body>
<ul>
<li>
<form action="/viewEAll" method="POST" >
<button type="submit" class="right">
<span>View Employees</span>
<span>View Employees</span>
</button>
</form>
</li>
<li>
<form action="/viewEBr" method="POST" >
<button type="submit" class="right">
<span>View Branch wise</span>
<span>View Branch wise</span>
</button>
</form>
</li>
<li>
<form action="/viewEC" method="POST" >
<button type="submit" class="right">
<span>View Total No of Employee</span>
<span>View Total No of Employee</span>
</button>
</form>
</li>
<li>
<form action="/viewECBr" method="POST" >
<button type="submit" class="right">
<span>View Branch wise Total Employee</span>
<span>View Branch wise Total Employee</span>
</button>
</form>
</li>
</ul>
<form action="/operations" method="POST">
<button type="submit" style="position: fixed; bottom: 0; right: 0; margin: 10px;">
Back to home</button>
</form>
</body>
</html>