This commit is contained in:
andrei-mihnea-cerbu
2024-04-08 13:37:58 +03:00
parent 333ad8be09
commit 370bbdedcd
164 changed files with 3915 additions and 161 deletions
@@ -0,0 +1,15 @@
@page "/"
@using HealthcareManagerUI.Components.Layout
@layout AuthLayout
<head>
<title>Choose Role</title>
</head>
<link rel="stylesheet" href="bootstrap/dist/css/bootstrap.min.css"/>
<div class="text-center mt-5 centered-menu">
<h1 class="landingTitle">Welcome to Healthcare Manager</h1>
<p class="landingSubtitle">Please select your role:</p>
<div class="button-container">
<NavLink class="btn btn-primary m-2" href="/login/doctor">I'm a Doctor</NavLink>
<NavLink class="btn btn-secondary m-2" href="/login/patient">I'm a Patient</NavLink>
</div>
</div>