-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.21 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
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>پنل مدیریت مدرسه</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css">
<link href="https://cdn.tailwindcss.com" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/flowbite.min.css" />
<link rel="stylesheet" href="./style.css" />
</head>
<body dir="rtl" style="background: #edf2f7;">
<div style="padding-left: 30%;padding-right: 30%;padding-top: 15%;">
<div class="grid grid-cols-2 gap-4">
<a href="./teacherpanel/teacherpanel.html" class="text-center">
<div class="bg-blue-100 rounded-2xl shadow-xl py-10">
<h1 class="text-2xl font-bold">پنل معلم</h1>
</div>
</a>
<a href="./headmasterpanel/headmasterpanel.html" class="text-center">
<div class="bg-yellow-100 rounded-2xl shadow-xl py-10">
<h1 class="text-2xl font-bold">پنل مدیر</h1>
</div>
</a>
</div>
</div>
<script src="https://unpkg.com/[email protected]/dist/flowbite.js"></script>
</body>
</html>