-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
101 lines (93 loc) · 2.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<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>Laundry management system</title>
</head>
<body>
<a style="color: #fff;" href="./user_view.php">Customer</a>
<a style="color: #fff;" href="./admin_login.php">Admin</a>
<div class="container">
<div class="heading">
<h1>Welcome to Laundry Management System</h1>
</div>
<div class="options">
<a style="color: #fff;" href="./user_view.php">
<div class="cust">
<h2>Customer</h2>
</div>
</a>
<a style="color: #fff;" href="./admin_login.php">
<div class="adm">
<h2>Admin</h2>
</div>
</a>
</div>
</div>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: rgb(61, 59, 59);
}
h1{
color: #c2c2a3;
font-size: 40px;
}
h2{
text-align: center;
}
a{
text-decoration: none;
padding: 20px;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
margin-top: 100px;
}
.heading{
margin-top: 50px;
}
.options{
display: flex;
padding: 20px;
margin: 20px;
margin-top: 10px;
}
.cust{
padding: 20px;
color: #444422;
background-color: #fff;
margin: 30px;
margin-right: 30px;
width: 100%;
border-radius: 15px;
}
.adm{
padding: 20px;
color: #444422;
background-color: #fff;
margin: 30px;
width: 100%;
border-radius: 15px;
}
.cust:hover{
background-color: #e6cbb3;
transition:ease-in 0.3s;
}
.adm:hover{
background-color: #e6cbb3;
transition:ease-in 0.3s;
}
</style>
</body>
</html>