-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend_whatsapp_success.php
49 lines (47 loc) · 1.42 KB
/
send_whatsapp_success.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
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Success Page</title>
<link rel="stylesheet" href="confirmcss.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Adlam:wght@500&display=swap');
footer {
background-color: black;
padding: 8px;
text-align: center;
position: fixed;
width: 100%;
bottom: 0;
font-family: 'Noto Sans Adlam', sans-serif;
text-transform: none;
font-size: 1.45em;
}
footer p {
margin:auto;
font-size: 18px;
color: white;
}
</style>
</head>
<body>
<div id="container">
<div id="success-box">
<div class="dot"></div>
<div class="dot two"></div>
<div class="face">
<div class="eye"></div>
<div class="eye right"></div>
<div class="mouth happy"></div>
</div>
<div class="shadow scale"></div>
<div class="message"><h1 class="alert">Success!</h1><p><b>YAY! Message Sent Successfully.</b></p></div>
<button class="button-box" onclick="location.href='index.php'"><h1 class="green"><b>continue</b></h1></button>
</div>
</div>
<footer>
<p>© 2024 Code Sprinters. All Rights Reserved.</p>
</footer>
</body>
</html>