mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
* Add XXL breakpoint * Unify setup guide display * Adapt desktop breakpoints in views * Fix POS code display * Fix syntax in home view * store settings + constrain update * account settings Co-authored-by: dstrukt <gfxdsign@gmail.com> Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
@model BTCPayServer.Storage.ViewModels.ChooseStorageViewModel
|
|
@{
|
|
ViewData.SetActivePage(ServerNavPages.Services, "Storage");
|
|
}
|
|
|
|
<h3 class="mb-4">@ViewData["Title"]</h3>
|
|
|
|
<div class="row">
|
|
<div class="col-xl-8 col-xxl-constrain">
|
|
@if (Model.ShowChangeWarning)
|
|
{
|
|
<div class="alert alert-danger mb-4">
|
|
If you change your configured storage provider, your current files will become inaccessible.
|
|
</div>
|
|
}
|
|
<form method="post">
|
|
@if (!ViewContext.ModelState.IsValid)
|
|
{
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
}
|
|
<div class="form-group">
|
|
<label asp-for="Provider" class="form-label"></label>
|
|
<select asp-for="Provider" asp-items="@Model.ProvidersList" class="form-select w-auto"></select>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary mt-2" name="command" value="Save">Next</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|