-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (29 loc) · 1.34 KB
/
index.html
File metadata and controls
35 lines (29 loc) · 1.34 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
34
35
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SafeWalk - דף בית</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<header class="header">
<img src="images/logo.png" alt="SafeWalk Logo" class="logo">
</header>
<main class="main-content">
<div class="intro-box">
<h2>ברוכה הבאה!</h2>
<p>בחרי כיצד ברצונך להיכנס או להירשם</p>
</div>
<div class="button-container">
<button class="btn btn-walker" onclick="window.location.href = 'includes/login_walker.php'">התחברות כהולכת רגל</button>
<button class="btn btn-volunteer" onclick="window.location.href = 'includes/login_volunteer.php'">התחברות כמתנדבת</button>
<button class="btn btn-outline" onclick="window.location.href = 'includes/register_walker.html'">הרשמה כהולכת רגל</button>
<button class="btn btn-outline" onclick="window.location.href = 'includes/register_volunteer.html'">הרשמה כמתנדבת</button>
</div>
</main>
<footer class="footer">
<p>© 2025 SafeWalk</p>
</footer>
</body>
</html>