-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployee.html
49 lines (49 loc) · 1.61 KB
/
employee.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles2.css') }}">
<title>Employee</title>
</head>
<body>
<ul>
<li>
<form action="/viewE" method="POST" >
<button type="submit" class="right">
<span>View</span>
<span>View</span>
</button>
</form>
</li>
<li>
<form action="/insertE" method="POST" >
<button type="submit" class="right">
<span>Insert</span>
<span>insert</span>
</button>
</form>
</li>
<li>
<form action="/updateE" method="POST" >
<button type="submit" class="right">
<span>Update</span>
<span>Update</span>
</button>
</form>
</li>
<li>
<form action="/deleteE" method="POST" >
<button type="submit" class="right">
<span>Delete</span>
<span>Delete</span>
</button>
</form>
</li>
</ul>
<img style="padding-top: 20px; margin: auto; display:flex;justify-content: center; width: 50%; height: 30%;" src="static/employees.jpg" alt="">
<form action="/operations" method="POST">
<button type="submit" style="position: fixed; bottom: 0; right: 0; margin: 10px;">
Back to home</button>
</form>
</body>
</html>