2020-09-05 12:16:48 +02:00
|
|
|
@model BTCPayServer.Models.ManageViewModels.SetPasswordViewModel
|
2017-09-13 15:47:34 +09:00
|
|
|
@{
|
2021-12-16 11:17:02 +01:00
|
|
|
ViewData.SetActivePage(ManageNavPages.ChangePassword, "Set password");
|
2017-09-13 15:47:34 +09:00
|
|
|
}
|
|
|
|
|
2022-01-17 17:19:27 -08:00
|
|
|
<h3>Set your password</h3>
|
2021-04-08 15:32:42 +02:00
|
|
|
|
2017-09-13 15:47:34 +09:00
|
|
|
<p class="text-info">
|
|
|
|
You do not have a local username/password for this site. Add a local
|
|
|
|
account so you can log in without an external login.
|
|
|
|
</p>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<form method="post">
|
2023-12-21 15:43:12 +01:00
|
|
|
<div asp-validation-summary="All"></div>
|
2017-09-13 15:47:34 +09:00
|
|
|
<div class="form-group">
|
2021-05-19 04:39:27 +02:00
|
|
|
<label asp-for="NewPassword" class="form-label"></label>
|
2017-09-13 15:47:34 +09:00
|
|
|
<input asp-for="NewPassword" class="form-control" />
|
|
|
|
<span asp-validation-for="NewPassword" class="text-danger"></span>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2021-05-19 04:39:27 +02:00
|
|
|
<label asp-for="ConfirmPassword" class="form-label"></label>
|
2017-09-13 15:47:34 +09:00
|
|
|
<input asp-for="ConfirmPassword" class="form-control" />
|
|
|
|
<span asp-validation-for="ConfirmPassword" class="text-danger"></span>
|
|
|
|
</div>
|
2021-12-27 22:54:31 -08:00
|
|
|
<button type="submit" class="btn btn-primary">Set Password</button>
|
2017-09-13 15:47:34 +09:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-05-19 04:39:27 +02:00
|
|
|
@section PageFootContent {
|
2021-04-08 15:32:42 +02:00
|
|
|
<partial name="_ValidationScriptsPartial" />
|
2017-09-13 15:47:34 +09:00
|
|
|
}
|