-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogoutadmin.html
More file actions
65 lines (59 loc) · 1.52 KB
/
logoutadmin.html
File metadata and controls
65 lines (59 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="images/logo2.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logout Confirmation</title>
</head>
<style>
body{
background-image:url(images/l3.jpg);
backdrop-filter: blur(5px);
background-size: cover;
}
h1{
margin-top: 100px;
margin-left: 650px;
font-size: 60px;
color: white;
}
.veri{
width: 700px;
height: 300px;
border:2px solid white;
float: left;
text-align: center;
padding: 50px;
box-sizing: border-box;
margin-left: 450px;
}
.veri input{
display: block;
margin-bottom: 5px;
margin: 10px;
width: 90%;
height: 40px;
padding: 10px;
}
.veri .yes:hover{
background-color: lightcoral;
cursor: pointer;
}
.veri .no:hover{
background-color: lightgreen;
cursor: pointer;
}
</style>
<body>
<h1>System Station</h1>
<div class="veri">
<h2 style="color: white;">Confirm Logout</h2>
<p style="color: white; font-size: 20px;">Are you sure you want to logout?</p>
<form action="logoutadmin.jsp" method="post">
<input type="submit" class="yes" name="confirm" value="Yes, Logout">
<input type="submit" class="no" name="decline" value="No, Cancel">
</form>
</div>
</body>
</html>