-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 2.51 KB
/
Copy pathindex.html
File metadata and controls
57 lines (52 loc) · 2.51 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AAC Premium Communicator</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<div class="header-top">
<h1>🗣️ ആശയവിനിമയ സഹായി (AAC)</h1>
<a href="/logout" class="logout-btn">പുറത്തുകടക്കുക (Logout)</a>
</div>
<div class="speech-bar" id="speech-bar">
<!-- Selected words will appear here -->
</div>
<div class="controls">
<button id="speak-btn" class="action-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon>
<path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"></path>
</svg>
പറയുക (Speak)
</button>
<button id="clear-btn" class="action-btn clear">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
മായ്ക്കുക (Clear)
</button>
</div>
</header>
<main>
<div class="category-filters" id="category-filters">
<button class="filter-btn active" data-filter="all">എല്ലാം</button>
<button class="filter-btn" data-filter="pronoun">സർവ്വനാമം</button>
<button class="filter-btn" data-filter="verb">ക്രിയകൾ</button>
<button class="filter-btn" data-filter="noun">നാമങ്ങൾ</button>
<button class="filter-btn" data-filter="adjective">വിശേഷണം</button>
</div>
<div class="grid" id="word-grid">
<!-- Word cards will be generated here by JavaScript -->
</div>
</main>
<script src="/script.js"></script>
</body>
</html>