-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
56 lines (55 loc) · 1.58 KB
/
Copy pathindex.php
File metadata and controls
56 lines (55 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Management System</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
.container {
background-color: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #333;
text-align: center;
margin-bottom: 30px;
}
.button {
display: inline-block;
padding: 12px 24px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
margin: 10px;
text-align: center;
}
.button:hover {
background-color: #0056b3;
}
.auth-links {
text-align: center;
margin-top: 30px;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Student Management System</h1>
<p style="text-align: center; color: #666;">Manage students, courses, attendance, and grades efficiently.</p>
<div class="auth-links">
<a href="login.php" class="button">Login</a>
<a href="register.php" class="button">Register</a>
</div>
</div>
</body>
</html>