-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.6 KB
/
index.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
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./style/style.css" />
<link
href="https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<div class="container">
<h2>مدیریت فعالیت ها</h2>
<div class="input-section">
<input id="task-input" type="text" placeholder="عنوان فعالیت ..." />
<input id="date-input" type="date" />
<button id="add-button">افزودن</button>
<button id="edit-button">ویرایش</button>
</div>
<div class="todos-operator">
<div class="filter-buttons">
<button class="filter-todos btn-add" data-filter="all">همه</button>
<button class="filter-todos" data-filter="pending">
در حال انجام
</button>
<button class="filter-todos" data-filter="completed">
تکمیل شده
</button>
</div>
<button id="delete-all-button">حذف همه</button>
</div>
</div>
<div id="alert-message"></div>
<div class="table">
<table>
<thead>
<tr>
<th>عنوان</th>
<th>تاریخ</th>
<th>وضعیت</th>
<th>عملیات</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<script src="./Js/main.js"></script>
</body>
</html>