Remotely/Remotely_Server/Pages/Invite.cshtml
Jared Goodwin 8debc4bad5 Initial
2021-07-29 07:53:41 -07:00

26 lines
478 B
Plaintext

@page
@model Remotely_Server.Pages.InviteModel
@{
ViewData["Title"] = "Invite";
}
<h2>Organization Invite</h2>
<div class="row">
<div class="col-sm-12">
@if (Model.Success)
{
<h5>Congratulations!</h5>
<p class="text-info">
You've successfully joined the organization!
</p>
}
else
{
<h5>Uh oh.</h5>
<p>@Model.Message</p>
}
</div>
</div>