-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.php
More file actions
62 lines (53 loc) · 2.06 KB
/
start.php
File metadata and controls
62 lines (53 loc) · 2.06 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foodee Logo</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-image: url(lib1_blur.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.logo-container {
text-align: center;
}
.logo {
font-size: 72px;
font-weight: bold;
color: #ff6b6b;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.tagline {
font-size: 14px;
color: #888;
font-style: italic;
}
.tagline a {
color: #888;
text-decoration: none;
}
.tagline a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="logo-container" style="margin: relative;margin-bottom: 220px;margin-right:100px;">
<div class="logo" style="font-size: 50px;color: rgb(0, 0, 0);">Welcome to</div>
<div class="logo" style="font-size: 60px; color: rgb(0, 0, 0);">Jahangirnagar University </div><br>
<div class="logo" style="font-size: 60px; color: rgb(0, 0, 0);">Advanced Library Management System</div><br>
<br>
<button style="position: relative; height: 80px; width: 220px;font-size: 18px;background-color: antiquewhite;"><a href="s_login.php" style="text-decoration: none;"><b>Login as a Student</b></a></button>
<button style="position: relative; height: 80px; width: 250px;font-size: 18px;background-color: antiquewhite;"><a href="welcome.php" style="text-decoration: none;"><b>Login as an Adminstrator</b></a></button>
</div>
</body>
</html>