mirror of
https://github.com/bitwarden/server.git
synced 2025-05-29 07:14:50 -05:00
28 lines
871 B
Plaintext
28 lines
871 B
Plaintext
@model OrganizationEditModel
|
|
@{
|
|
ViewData["Title"] = "Create Client Organization";
|
|
}
|
|
|
|
@section Scripts {
|
|
@await Html.PartialAsync("~/AdminConsole/Views/Shared/_OrganizationFormScripts.cshtml")
|
|
|
|
<script>
|
|
(() => {
|
|
togglePlanFeatures('@((byte)Model.PlanType)');
|
|
})();
|
|
</script>
|
|
}
|
|
|
|
<h1>New Client Organization</h1>
|
|
|
|
@await Html.PartialAsync("~/AdminConsole/Views/Shared/_OrganizationForm.cshtml", Model)
|
|
<div class="d-flex mt-4">
|
|
<button type="submit" class="btn btn-primary" form="edit-form">Save</button>
|
|
<div class="ms-auto d-flex">
|
|
<form asp-controller="Providers" asp-action="Cancel" asp-route-id="@Model.Provider.Id"
|
|
onsubmit="return confirm('Are you sure you want to cancel?')">
|
|
<button class="btn btn-outline-secondary" type="submit">Cancel</button>
|
|
</form>
|
|
</div>
|
|
</div>
|