TireTargetsWeb/Components/Pages/Portal.razor

40 lines
1.2 KiB
Plaintext

@page "/portal"
<head>
<!-- Document Title
============================================= -->
<title>Portal | TireTargets</title>
</head>
@if(!userHasLocation)
{
<div class="alert alert-warning" role="alert">
Welcome! To link your business with your account, please contact us at <a href="mailto:support@keymotive.net">support@keymotive.net</a>
</div>
}
@if(needSelection)
{
<div class="alert alert-success" role="alert">
Your offers are ready for selection! <a href="/selection">Click here to select your offerings!</a>
</div>
}
else if (userHasLocation && !needSelection)
{
<div class="alert alert-primary" role="alert">
Your offers are all ready to go. If you wish to make revisions, <a href="/selection">click here to adjust your offerings!</a>
</div>
}
<div class="container">
<div class="row">
<div class="col-12 text-center mt-5">
<h3 style="text-align: center">Hello, @Components.Layout.MainLayout.Session["fname"].Split(" ")[0]! The portal is under construction. Come back later!</h3>
<img style="text-align: center;width:800px;height:600px" src="assets/construction.png" />
</div>
</div>
</div>