Skip to content

Commit

Permalink
delete button page
Browse files Browse the repository at this point in the history
  • Loading branch information
MustafaAdam committed Apr 23, 2024
1 parent df91eb9 commit 9fc498f
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions deleteButton/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hisab Account Deletion Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
line-height: 1.6;
}

.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}

h1,
h5 {
margin-top: 0;
}

p {
margin-bottom: 20px;
}

button {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s;
}

button:hover {
background-color: #0056b3;
}
</style>
</head>

<body>



<div class="container">
<h1>
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSc8WL6_8lRf2ynN3aeGUvPH3oOz1_Lb7XOAwpKZfhSf63CdvA/viewform?usp=sf_link">
RequestAccount Deletion
</a>
</h1>

</div>

</body>

</html>

0 comments on commit 9fc498f

Please sign in to comment.