forked from heyabhiraj/CANMANsys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
46 lines (41 loc) · 1.48 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="h-20 p-5">
<div class="flex p-5 mb-1 items-center justify-around bg-white ">
<!-- Left side Logo -->
<h1 class="text-4xl text-yellow-600 drop-shadow-lg"> <a href="">CANMANsys </a></h1>
<!-- Right side buttons -->
<div class="flex items-center">
<button class="bg-yellow-600 text-white rounded-full px-4 py-2 mr-4" onclick='window.location.href="login.php"'>Login</button>
<button class="bg-black text-white rounded-full px-4 py-2" onclick='window.location.href="register.php"'>Register</button>
</div>
</div>
<div class=" bg-orange-100 rounded-lg h-700 w-auto p-10 drop-shadow-lg">
<div class="flex flex-wrap justify-center">
<div class="w-full md:w-1/2 p-4">
<div class=" items-center justify-center">
<h2 class="text-4xl"> 0rder Food Anytime...</h2>
<p class="p-3">A Canteen Management System</p>
</div>
</div>
<div class="w-full md:w-1/2 p-4">
<div class="rounded-lg flex items-center justify-center">
<div class="object-fit drop-shadow-xl">
<img src="img.svg">
</div>
</div>
</div>
</div>
</div>
<div>
</body>
</html>