-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount.html
69 lines (66 loc) · 2.14 KB
/
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
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover"
/>
<meta http-equiv="cleartype" content="on" />
<title>הגדרות חשבון</title>
<meta name="description" content="" />
<link rel="stylesheet" href="styles.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.png" type="image/png" />
</head>
<body>
<main>
<div
class="container"
style="display: block; max-width: 560px; margin: auto"
>
<img
src="white-logo.webp"
alt="Logo"
class="app-image"
style="max-width: 150px"
/>
<h2>הגדרות חשבון</h2>
<h3>מחיקת חשבון</h3>
<p>
אם ברצונך למחוק את החשבון שלך וכל הנתונים הקשורים אליו ביישום, מלא את
הטופס עם פרטי החשבון שלך שבהם השתמשת ביישום.
</p>
<p>לאחר מחיקת חשבון, לא ניתן לשחזרו</p>
<form class="form" id="delete-form">
<div class="input-container">
<label for="email">אימייל</label>
<input
type="email"
id="delete-email"
name="email"
class="input"
placeholder="[email protected]"
/>
</div>
<div class="input-container">
<label for="password">סיסמה</label>
<input
type="password"
id="delete-password"
name="password"
class="input"
placeholder="********"
/>
</div>
<button type="submit" class="button">מחק חשבון</button>
</form>
</div>
</main>
<footer>
<a href="index.html">דף הבית</a>
</footer>
<script type="module" src="/account.js"></script>
</body>
</html>