<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delete Account - SerQ</title>
<style>
*{
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}
body{
background:#f6f8fc;
display:flex;
justify-content:center;
padding:40px 15px;
}
.delete-card{
width:100%;
max-width:780px;
background:white;
border-radius:25px;
padding:35px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}
.title{
display:flex;
gap:15px;
align-items:center;
}
.title span{
font-size:38px;
}
h1{
font-size:32px;
margin:0;
}
.subtitle{
font-size:22px;
line-height:1.4;
margin:20px 0 35px;
}
.input-box,
textarea{
width:100%;
border:1px solid #d8dce6;
border-radius:14px;
padding:18px;
font-size:18px;
outline:none;
margin-bottom:25px;
}
textarea{
height:160px;
resize:none;
}
.info{
background:#f1f6ff;
border-radius:15px;
padding:25px;
color:#244fd8;
font-size:18px;
line-height:1.6;
}
.info h2{
margin-top:0;
}
.check{
margin:25px 0;
font-size:18px;
}
.actions{
display:flex;
justify-content:space-between;
align-items:center;
}
.cancel{
color:#ff2d68;
font-size:18px;
font-weight:bold;
}
button{
border:none;
background:#ff9da5;
color:white;
padding:18px 35px;
border-radius:12px;
font-size:18px;
cursor:pointer;
}
button:hover{
background:#ff7885;
}
</style>
</head>
<body>
<div class="delete-card">
<div class="title">
<span>🗑️</span>
<h1>Delete Account</h1>
</div>
<p class="subtitle">
Fill out this form for the deletion of your account and associated data from
<b>SerQ database.</b>
</p>
<input
class="input-box"
type="number"
placeholder="📞 Enter 10 digit your phone number">
<textarea placeholder="Description...
Enter your reason for deleting your SerQ account"></textarea>
<div class="info">
<h2>🔒 Data Deletion Information</h2>
<p>
When you delete your account, we will:
</p>
<ul>
<li>Remove your personal information (name, email, phone number)</li>
<li>Delete your profile details and account settings</li>
<li>Remove saved addresses and service preferences</li>
<li>Delete booking history and associated account data</li>
<li>Remove provider/customer related information linked to your account</li>
</ul>
<p>
Some information may be retained for legal, security, payment, and regulatory purposes.
After the retention period, your account data will be permanently deleted.
</p>
</div>
<div class="check">
<input type="checkbox">
I understand that this action cannot be undone
</div>
<div class="actions">
<div class="cancel">
Cancel and return to home
</div>
<button>
Submit Request
</button>
</div>
</div>
</body>
</html>

Last updated: June 17, 2026
Our team is ready to assist you with any inquiries related to this content.