-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
75 lines (69 loc) · 2.1 KB
/
index.php
File metadata and controls
75 lines (69 loc) · 2.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Student Management System</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f5f5f5;
color: #333;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.landing-container {
text-align: center;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 5px;
max-width: 400px;
width: 90%;
}
h1,h2 {
font-size: 2rem;
margin-bottom: 20px;
color: #007bff; /* Material UI primary color */
}
p {
font-size: 1.1rem;
line-height: 1.5;
margin-bottom: 10px;
}
.btn-login {
display: inline-block;
padding: 10px 20px;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
color: #fff;
background-color: #007bff; /* Material UI primary color */
border-radius: 5px;
transition: background-color 0.3s ease;
}
.btn-login:hover {
background-color: #0056b3; /* Darker shade for hover effect */
}
</style>
</head>
<body>
<div class="landing-container">
<h2>Welcome to Project Management System for Jain (Deemed-to-be University)</h2>
<p>This system helps in managing student projects, marks, attendance, and more.</p>
<p>Please login to continue.</p>
<a href="login.php" class="btn-login">Login</a>
</div>
<script>
// Disable browser back button to prevent navigation back to this page
history.pushState(null, null, location.href);
window.onpopstate = function () {
history.go(1);
};
</script>
</body>
</html>