-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathname.html
More file actions
32 lines (29 loc) · 966 Bytes
/
name.html
File metadata and controls
32 lines (29 loc) · 966 Bytes
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
<!-- name.html -->
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>הכנה למשחק</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="name-container">
<h1>הכנה למשחק</h1>
<div class="category-display">
<span>קטגוריה נבחרת: </span>
<span id="selectedCategoryDisplay"></span>
</div>
<div class="form-group">
<label for="playerName">הכנס את שמך:</label>
<input type="text" id="playerName" maxlength="20" required>
<div class="error-message" id="errorMessage">אנא הכנס שם תקין</div>
</div>
<div>
<button id="startActualGameBtn" class="btn-primary">התחל משחק!</button>
<button id="backToHomeBtn" class="btn-secondary">חזור</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>