Update: 2026-06-28 00:42:25
This commit is contained in:
@@ -1,67 +1,169 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Delete Account</title>
|
||||
<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: sans-serif;
|
||||
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 {
|
||||
top: 20px;
|
||||
margin-top: 0;
|
||||
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-width: 600px;
|
||||
margin-bottom: 20px;
|
||||
max-height: 480px;
|
||||
display: block;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.5em;
|
||||
.instructions {
|
||||
font-size: 15px;
|
||||
line-height: 1.6;
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.app-logo {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
left: 0;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
.instructions strong {
|
||||
color: #FFFFFF;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
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>
|
||||
|
||||
<img width="100px" height="100px" src="logo.gif" alt="App logo">
|
||||
<div class="container">
|
||||
<div class="logo-wrapper">
|
||||
<img class="app-logo" src="logo.png" alt="Siro App Logo">
|
||||
</div>
|
||||
|
||||
<h1>Delete Account</h1>
|
||||
<h1>Delete Account</h1>
|
||||
|
||||
<video width="100" height="440" controls>
|
||||
<source src="animation.mp4" type="video/mp4">
|
||||
</video>
|
||||
<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>
|
||||
|
||||
<p>To delete your account, please open the app and go to the <strong><em>Profile</em></strong> page. Then, tap on
|
||||
the "<strong><em>Delete My Account</em></strong>" button and follow the instructions.</p>
|
||||
<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>
|
||||
©
|
||||
All rights reserved by <strong><em> SEFER </em></strong>
|
||||
</p>
|
||||
<!-- </footer> -->
|
||||
<footer>
|
||||
<p>© All rights reserved by <strong>Siro LLC</strong></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user