-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
39 lines (39 loc) · 936 Bytes
/
success.html
File metadata and controls
39 lines (39 loc) · 936 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Success</title>
<style type="text/css">
button {
background-color: rgb(0, 150, 200);
padding: 10px 12px;
/*border: 4px solid orangered;*/
border-radius: 25px;
font-size: 20px;
color: white;
}
button:hover {
background-color: white;
color: black;
}
</style>
</head>
<style>
body {
background-image: url('2511619.jpg');
background-size: 1600px 750px;
background-repeat: no-repeat;
min-height: 100vh;
}
</style>
<body >
<h1 style="color: orangered; text-align: center;" id="res">Pass applied successfully</h1>
<center>
<button onclick="openWin()">Click here to go to Home page</button>
</center>
<script>
function openWin() {
window.location.replace("Login.php");
}
</script>
</body>
</html>