mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* updates * updates * updates * updates * updates * moves api key CTA to top right * updates * more updates * more updates * Fix active state when "Account" is selected * Update wording in subnav: Profile becomes Account * Fix email test * Update Emails wording * Try to fix email test * Make General first tab in store settings Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
18 lines
598 B
Text
18 lines
598 B
Text
@model UsersViewModel.UserViewModel
|
|
@{
|
|
ViewData.SetActivePage(ServerNavPages.Users, Model.Email);
|
|
}
|
|
|
|
<h3 class="mb-4">@ViewData["Title"]</h3>
|
|
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<form method="post">
|
|
<div class="form-group form-check mb-4">
|
|
<input asp-for="IsAdmin" type="checkbox" class="form-check-input" />
|
|
<label asp-for="IsAdmin" class="form-check-label">Is admin</label>
|
|
</div>
|
|
<button name="command" type="submit" class="btn btn-primary" value="Save">Save</button>
|
|
</form>
|
|
</div>
|
|
</div>
|