-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
56 lines (53 loc) · 2.76 KB
/
Copy pathadmin.html
File metadata and controls
56 lines (53 loc) · 2.76 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>Admin – KPMTU</title>
<meta name="description" content="Admin placeholder for future KPMTU portal." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+Malayalam:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<script src="assets/js/i18n.js" defer></script>
<script src="assets/js/nav.js" defer></script>
</head>
<body data-page="admin">
<header id="main-header"></header>
<main>
<section class="container">
<h1 class="section-title" data-i18n="admin_title"></h1>
<p class="section-subtitle"> </p>
<div style="margin-top: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem;">
<p data-i18n="admin_placeholder"></p>
</div>
</section>
</main>
<footer class="footer container" style="display: flex; flex-direction: column; gap: 2rem; padding-top: 3rem; padding-bottom: 3rem;">
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;">
<div>
<div style="font-size: 1.1rem; margin-bottom: 1rem; font-weight: 600;" data-i18n="footer_text"></div>
</div>
<div>
<h3 style="margin-bottom: 1rem; font-weight: 600; font-size: 1.2rem;" data-i18n="footer_quick_links"></h3>
<ul style="list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem;">
<li><a href="about.html" data-i18n="nav_about" style="text-decoration: none; color: inherit;"></a></li>
<li><a href="leadership.html" data-i18n="nav_leadership" style="text-decoration: none; color: inherit;"></a></li>
<li><a href="membership.html" data-i18n="nav_membership" style="text-decoration: none; color: inherit;"></a></li>
<li><a href="contact.html" data-i18n="nav_contact" style="text-decoration: none; color: inherit;"></a></li>
</ul>
</div>
<div>
<h3 style="margin-bottom: 1rem; font-weight: 600; font-size: 1.2rem;" data-i18n="nav_contact"></h3>
<div data-i18n="footer_contact_address" style="line-height: 1.6;"></div>
</div>
</div>
<div style="text-align: center; margin-top: 2rem; border-top: 1px solid #eaeaea; padding-top: 2rem; font-size: 0.9rem; color: #666;">
<p data-i18n="footer_note"></p>
</div>
</footer>
</body>
</html>