mirror of
https://github.com/bitwarden/server
synced 2026-02-07 12:13:33 +00:00
* Add Promote Provider Service User feature to Admin Portal * Rename feature flag key for Promote Provider Service User tool
25 lines
838 B
Plaintext
25 lines
838 B
Plaintext
@model PromoteProviderServiceUserModel
|
|
@{
|
|
ViewData["Title"] = "Promote Provider Service User";
|
|
}
|
|
|
|
<h1>Promote Provider Service User</h1>
|
|
|
|
<form method="post">
|
|
<div asp-validation-summary="All" class="alert alert-danger"></div>
|
|
<div class="row">
|
|
<div class="col-md">
|
|
<div class="mb-3">
|
|
<label asp-for="UserId" class="form-label"></label>
|
|
<input type="text" class="form-control" asp-for="UserId">
|
|
</div>
|
|
</div>
|
|
<div class="col-md">
|
|
<div class="mb-3">
|
|
<label asp-for="ProviderId" class="form-label"></label>
|
|
<input type="text" class="form-control" asp-for="ProviderId">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Promote Service User</button>
|
|
</form> |