Files
Siro/backend/instructions_web/delete_account.html
2026-06-28 00:42:26 +03:00

169 lines
4.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delete Account - Siro</title>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #0A66C2;
--primary-gradient: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
--bg: #0D0D14;
--card-bg: rgba(255, 255, 255, 0.03);
--text-main: #FFFFFF;
--text-muted: #94A3B8;
--border: rgba(255, 255, 255, 0.08);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg);
color: var(--text-main);
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
overflow-x: hidden;
background-image:
radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
radial-gradient(circle at 90% 80%, rgba(29, 78, 216, 0.1) 0%, transparent 40%);
}
.container {
max-width: 500px;
width: 100%;
background: var(--card-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--border);
border-radius: 28px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.container:hover {
transform: translateY(-4px);
box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6);
}
.logo-wrapper {
margin-bottom: 24px;
display: inline-block;
position: relative;
}
.logo-wrapper::after {
content: '';
position: absolute;
top: -8px;
left: -8px;
right: -8px;
bottom: -8px;
border-radius: 50%;
background: var(--primary-gradient);
z-index: -1;
opacity: 0.2;
filter: blur(8px);
}
.app-logo {
width: 90px;
height: 90px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--border);
background: #FFFFFF;
padding: 2px;
}
h1 {
font-size: 28px;
font-weight: 700;
margin-bottom: 16px;
letter-spacing: -0.5px;
background: linear-gradient(to right, #FFFFFF, #E2E8F0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.video-container {
position: relative;
width: 100%;
border-radius: 20px;
overflow: hidden;
border: 1px solid var(--border);
margin-bottom: 24px;
background: #000;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
video {
width: 100%;
max-height: 480px;
display: block;
object-fit: cover;
}
.instructions {
font-size: 15px;
line-height: 1.6;
color: var(--text-muted);
text-align: center;
}
.instructions strong {
color: #FFFFFF;
font-weight: 600;
}
footer {
margin-top: 40px;
font-size: 13px;
color: rgba(255, 255, 255, 0.3);
letter-spacing: 0.5px;
}
footer strong {
color: rgba(255, 255, 255, 0.5);
font-weight: 600;
}
</style>
</head>
<body>
<div class="container">
<div class="logo-wrapper">
<img class="app-logo" src="logo.png" alt="Siro App Logo">
</div>
<h1>Delete Account</h1>
<div class="video-container">
<video controls poster="logo.png">
<source src="animation.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="instructions">
<p>To delete your account, please open the app and navigate to the <strong>Profile</strong> page. Tap on the <strong>Delete My Account</strong> button and follow the instructions.</p>
</div>
</div>
<footer>
<p>&copy; All rights reserved by <strong>Siro LLC</strong></p>
</footer>
</body>
</html>