-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (122 loc) · 3.21 KB
/
index.html
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>College Management Backend</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
color: #333;
}
.header {
background-color: #2d3e50;
color: white;
padding: 20px 0;
text-align: center;
font-size: 36px;
font-weight: bold;
}
.container {
padding: 40px;
max-width: 1000px;
margin: 0 auto;
background-color: #fff;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
}
h2 {
font-size: 28px;
color: #2d3e50;
margin-bottom: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 12px;
text-align: left;
}
th {
background-color: #2d3e50;
color: white;
}
td {
background-color: #f9f9f9;
}
td a {
text-decoration: none;
color: #00796b;
font-weight: bold;
font-size: 16px; /* Increased font size */
padding: 6px 10px;
border-radius: 4px;
transition: background-color 0.3s ease, color 0.3s ease;
}
td a:hover {
color: #fff;
background-color: #00796b;
}
.footer {
margin-top: 40px;
padding: 10px;
background-color: #2d3e50;
color: white;
text-align: center;
font-size: 14px;
}
.credentials {
margin-top: 30px;
background-color: #f9f9f9;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}
.credentials h3 {
font-size: 24px;
color: #2d3e50;
}
.credentials p {
font-size: 18px;
color: #333;
}
</style>
</head>
<body>
<div class="header">
College Management Backend
</div>
<div class="container">
<h2>CMS - Backend Page</h2>
<p>Below is the link to the Admin Panel for managing the backend system:</p>
<table>
<thead>
<tr>
<th>Route</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://college-management-backend-wz9p.onrender.com/admin" target="_blank">Admin Panel</a></td>
<td>Access the admin interface for managing the backend system.</td>
</tr>
</tbody>
</table>
<div class="credentials">
<h3>Admin Credentials</h3>
<p>Username: <strong>admin</strong></p>
<p>Password: <strong>admin@123</strong></p>
</div>
</div>
</body>
</html>