-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirming-to-delet-my-account.html
63 lines (62 loc) · 1.79 KB
/
confirming-to-delet-my-account.html
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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dinosoft Delete Account Confirmation</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 50px;
}
.confirmation {
background-color: #f2f2f2;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 600px;
margin: 0 auto;
}
h2 {
color: #333;
}
.actions {
margin-top: 20px;
}
.button {
padding: 10px 20px;
background-color: #ff6347;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
text-decoration: none; /* Remove default link underline */
transition: background-color 0.3s ease;
display: inline-block;
}
.button:hover {
background-color: #e74c3c;
}
</style>
</head>
<body>
<div class="confirmation">
<h2>Are you sure you want to delete your account?</h2>
<p>This action cannot be undone.</p>
<div class="actions">
<!-- Use an <a> tag for the delete link -->
<a href="asking-for-feedback-before-deleting-account.html" class="button">Delete My Account</a>
<br>
<br>
<button onclick="goBack()" class="button">Cancel</button>
</div>
</div>
<script>
function goBack() {
window.history.back();
}
</script>
</body>
</html>