mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 08:32:50 -05:00
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
@model ProviderEditModel
|
|
@{
|
|
ViewData["Title"] = "Provider: " + Model.Provider.Name;
|
|
}
|
|
|
|
<h1>Provider <small>@Model.Provider.Name</small></h1>
|
|
|
|
<h2>Provider Information</h2>
|
|
@await Html.PartialAsync("_ViewInformation", Model)
|
|
@await Html.PartialAsync("Admins", Model)
|
|
<form method="post" id="edit-form">
|
|
<h2>General</h2>
|
|
<div class="row">
|
|
<div class="col-sm">
|
|
<div class="form-group">
|
|
<label asp-for="Name"></label>
|
|
<input type="text" class="form-control" asp-for="Name" required>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<h2>Business Information</h2>
|
|
<div class="row">
|
|
<div class="col-sm">
|
|
<div class="form-group">
|
|
<label asp-for="BusinessName"></label>
|
|
<input type="text" class="form-control" asp-for="BusinessName">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<h2>Billing</h2>
|
|
<div class="row">
|
|
<div class="col-sm">
|
|
<div class="form-group">
|
|
<label asp-for="BillingEmail"></label>
|
|
<input type="email" class="form-control" asp-for="BillingEmail">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm">
|
|
<div class="form-group">
|
|
<label asp-for="BillingPhone"></label>
|
|
<input type="tel" class="form-control" asp-for="BillingPhone">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
@await Html.PartialAsync("Organizations", Model)
|
|
<div class="d-flex mt-4">
|
|
<button type="submit" class="btn btn-primary" form="edit-form">Save</button>
|
|
</div>
|