-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
40 lines (38 loc) · 935 Bytes
/
success.html
File metadata and controls
40 lines (38 loc) · 935 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
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Success</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #e9f7ef;
margin: 0;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
color: #2c3e50;
text-align: center;
}
h1 {
color: #27ae60;
}
.message {
background-color: #fff;
border: 1px solid #27ae60;
border-radius: 5px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<h1>Success!</h1>
<div class="message">
<p>Your data has been successfully saved </p>
</div>
</body>
</html>