-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormemployer.delete.html
63 lines (50 loc) · 1.79 KB
/
Formemployer.delete.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
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Delete employer's data</title>
</head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<body>
<div style="border: 1px solid darkslateblue ; width:100% ; height:50px ; background-color:darkslateblue">
<CENTER>
<font color="white">
<H1 STYLE="font-family: Calibri ;">BANK MANAGEMENT DATABASE SYSTEM LOGIN</H1>
</font>
</CENTER>
</div>
<font color="#483d8b" class="font-weight-bold " ;>
<center><h1 style="font-family: Calibri">Delete employers's Data</h1></center></font>
<style>
body {
background-image: url('IMAGE.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
<br>
<br>
<form method="post" action="formemployer.delete.php">
<div style=" width: 600px; height: 400px; margin-left: 390px; border-collapse: collapse">
<div class="form-group"> <!-- ID CARD No -->
<label class="control-label alert alert-danger"><B>CNIC</B></label>
<br>
<font color="red"><b>Enter CNIC of the employer whose data you want to Delete.</b></font>
<input type="number" class="form-control" placeholder="XXXXX-XXXXXXX-X" name="b1">
</div>
<br>
<center>
<div class="form-group"> <!-- Submit Button -->
<button type="submit" class="btn btn-danger">DELETE</button>
</div>
</center>
</div>
</form>
<br>
<br>
<br>
<div style="border: 1px solid darkslateblue ; width=100% ; height:100px ; background-color:darkslateblue">
</div>
</body>
</html>