-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
34 lines (31 loc) · 1.2 KB
/
index.php
File metadata and controls
34 lines (31 loc) · 1.2 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
<html dir="rtl" lang="ar">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>الدخول</title>
<!-- CSS -->
<link rel="stylesheet" href="assets/css/index.css" />
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<article class="auth">
<div class="header">
<div class="logo mb-5 mt-4" style="width: 180px;">
<a href="home.php"><img src="assets/imgs/logo.jpeg" alt="" /></a>
</div>
<div class="h-btns ">
<a href="loginsupervisor.php">
<button id="regbtn" type="button" class="btn">مشرف</button>
</a>
<a href="loginstudent.php">
<button id="loginbtn" type="button" class="btn">طالب</button>
</a>
</div>
</div>
</article>
<script src="assets/js/index.js"></script>
</body>
</html>