-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremoveform.html
More file actions
89 lines (76 loc) · 2.4 KB
/
removeform.html
File metadata and controls
89 lines (76 loc) · 2.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang= "en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
.header_name {
padding: 10px;
text-align: center;
background: #8f8e96;
color: white;
}
.navbar{
overflow: hidden;
background-color: #333;
position: sticky;
position: -webkit-sticky;
top: 0;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.navbar a.active {
background-color: #666;
color: white;
}
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
.navbar a.right {
float: right;
}
.image1{
float: right;
padding: 10px;
}
.info{
float: left;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
</style>
</head>
<body>
<div class = "header_name">
<i style = "font-size: 130%;"> Admin </i>
</div>
<div class = "navbar">
<a href="home"> Return Home </a>
<a href="admin"> Admin Home </a>
<a href="displayemails"> Display Emails </a>
<a href="removeform"> Remove Email</a>
<a href="sendemail"> Send Notification</a>
<a href="logout" class = "right"> Logout </a>
</div>
<h3>Please enter in a number bellow for the email you
want to remove. Enter "all" to requst all emails to be removed.
<br> You will be sent an email soon with an update.
</h3>
<form action="http://localhost:8080/removeData" method="POST">
Number: <input type="text" name="number"><br>
Email: <input text="email" name ="email"><br>
<button type="submit">Send Requst</button>
</form>
</body>
</html>