-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_manager.html
More file actions
43 lines (39 loc) · 1.42 KB
/
Copy pathadd_manager.html
File metadata and controls
43 lines (39 loc) · 1.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add Manager</title>
<link rel="stylesheet" href="style4.css">
</head>
<body>
<header>
<h1>Add New Manager</h1>
</header>
<div class="container">
<form action="add_manager.php" method="post">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br>
<label for="corporation_id">Corporation ID:</label><br>
<input type="number" id="corporation_id" name="corporation_id" required><br>
<label for="salary">Salary:</label><br>
<input type="number" id="salary" name="salary" required><br>
<label for="designated_floor">Designated Floor:</label><br>
<input type="text" id="designated_floor" name="designated_floor" required><br>
<input type="submit" value="Submit">
</form>
</div>
<footer>
<div class="footer-content">
<div class="logo">
<img src="logo.png" alt="Logo">
</div>
<div class="contact-links">
<a href="#">Contact Us</a>
<a href="#">Terms of Service</a>
<a href="#">Privacy Policy</a>
</div>
</div>
</footer>
</body>
</html>