-
Notifications
You must be signed in to change notification settings - Fork 0
/
deleteuser.php
48 lines (44 loc) · 1019 Bytes
/
deleteuser.php
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
<!DOCTYPE html>
<html>
<head>
</head>
<style>
html {
background: url(https://delcon.net.au/wp-content/uploads/2018/10/question-mark-1872634_1280-862x474.jpg) no-repeat center fixed;
background-size: cover;
}
.block {
display: block;
width: 7%;
border: none;
background-color: #4CAF50;
color: white;
padding: 14px 28px;
font-size: 16px;
cursor: pointer;
text-align: center;
}
#wrapper{width:500%; height:400px; border:1px solid black;}
button{height:50px; position:relative; margin: 10px 60px; width:100x; top:50%; left:0%;}
.block:hover {
background-color: #ddd;
color: black;
}
</style>
<center>
<form action="deleteusercode.php" method="post">
<br>
<br>
<br>
<input class="input-field" type="text" placeholder="User ID" name="userid">
<br>
<br>
<br>
<input class="input-field" type="text" placeholder="User Name" name="username">
<br>
<br>
<br>
<button type="submit" class="btn">Delete</button>
</form>
</center>
</html>