feat: backend auth, admin panel, role-based routing
This commit is contained in:
59
frontend/student/index.html
Normal file
59
frontend/student/index.html
Normal file
@@ -0,0 +1,59 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Панель студента</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
background: #0f0f1a;
|
||||
color: #f0f0f5;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.placeholder {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.placeholder h1 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.placeholder p {
|
||||
color: #9ca3af;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.placeholder a {
|
||||
color: #818cf8;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.placeholder a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="placeholder">
|
||||
<h1>Панель студента</h1>
|
||||
<p>Раздел в разработке</p>
|
||||
<a href="/" onclick="localStorage.clear()">Выйти</a>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user