-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess.php
74 lines (66 loc) · 1.92 KB
/
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
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
<?php
// Start a session or perform any required backend processing here
// Example: session_start();
// Include this code after your form submission logic
// if (form submission successful) { render this page }
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Submission Success</title>
<style>
body {
margin: 0;
padding: 0;
background-color: black;
background-size: cover;
font-family: 'Arial', sans-serif;
color: #ffffff;
}
.success-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
backdrop-filter: blur(5px);
background-color: rgba(0, 0, 0, 0.6);
padding: 20px;
}
.success-icon {
font-size: 100px;
size:30px;
color: #4CAF50;
margin-bottom: 10px;
}
.success-message {
font-size: 24px;
font-weight: bold;
text-align: center;
margin-bottom: 20px;
}
.cta-button {
padding: 15px 30px;
font-size: 18px;
color: #ffffff;
background-color: #4CAF50;
border: none;
border-radius: 8px;
cursor: pointer;
text-decoration: none;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="success-container">
<img src="img/icons/don/gif.gif"> <img/>
<a href="index.html" class="cta-button">Go to Homepage</a>
</div>
</body>
</html>