-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest-access.html
More file actions
33 lines (28 loc) · 1.05 KB
/
Copy pathrequest-access.html
File metadata and controls
33 lines (28 loc) · 1.05 KB
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
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VidorAI - בקשת גישה</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<header class="page-header">
<h1>בקשת גישה</h1>
<p>השאירו פרטים ונחזור אליכם בשמחה לאישור!</p>
</header>
<section class="form-section visible">
<form id="accessForm" class="access-form">
<input type="text" id="fullName" placeholder="שם מלא" required>
<input type="email" id="email" placeholder="אימייל" required>
<button type="submit" class="submit-button">שלח בקשה</button>
</form>
<div id="statusMessage"></div>
</section>
<footer>
<p>© 2025 VidorAI. נוצר עם ❤️ בישראל. כל הזכויות שמורות.</p>
</footer>
<script src="script.js"></script>
</body>
</html>