- create separate dashboard components for doctor and patient - add appointments to dashboard components - add code to backend for appointments retrieval
18 lines
542 B
Plaintext
18 lines
542 B
Plaintext
@inherits LayoutComponentBase
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/AuthLayout.css"/>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="background"></div>
|
|
<div class="container">
|
|
@Body
|
|
</div>
|
|
</body>
|
|
</html> |