-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager.html
More file actions
49 lines (49 loc) · 1.25 KB
/
manager.html
File metadata and controls
49 lines (49 loc) · 1.25 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
44
45
46
47
48
49
<!DOCTYPE HTML>
<html>
<head>
<body style="background:url(9.jpg); background-repeat:no-repeat; background-size:cover;min-height:50% width:100%">
<h1>Manager Details</h1>
<style>
body {
background-color: silver;
}
h1
{
background: black;
color: white;
text-align: center;
}
</style>
<body>
<form action="manager.php" method="POST">
<table>
<tr>
<td style="color: white">Name:</td>
<td> <input type="text" placeholder=name name="man_name"required></td>
</tr>
<tr>
<td style="color: white">Manager ID:</td>
<td> <input type="text" placeholder=Id name="man_id"required></td>
</tr>
<tr>
<td style="color: white">Branch_ID:</td>
<td> <input type="text" placeholder=ID name="bra_id"required></td>
</tr>
<tr>
<td style="color: white">Salary:</td>
<td> <input type="text" placeholder=amount name="salary"required></td>
</tr>
<tr>
<td style="color: white">Phno:</td>
<td> <input type="phone" placeholder=phno name="man_phno"required></td>
</tr>
<tr>
<td><input type="submit" value="submit"></td>
</tr>
<tr>
<td><button><a href="2.html">HOME</a></button></td>
</tr>
</table>
</form>
</body>
</html>