mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
26 lines
478 B
Plaintext
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>
|