Files
magistr/frontend/teacher/index.html

59 lines
1.4 KiB
HTML

<!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>