2021-04-18 14:05:12 -05:00
|
|
|
@model BTCPayServer.Storage.Services.Providers.GoogleCloudStorage.Configuration.GoogleCloudStorageConfiguration
|
2019-04-22 09:41:20 +02:00
|
|
|
@{
|
2024-10-25 15:48:53 +02:00
|
|
|
ViewData.SetActivePage(ServerNavPages.Files, StringLocalizer["Google Cloud Storage"]);
|
2019-04-22 09:41:20 +02:00
|
|
|
}
|
|
|
|
|
2024-06-19 15:23:10 +02:00
|
|
|
<div class="sticky-header">
|
|
|
|
<nav aria-label="breadcrumb">
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li class="breadcrumb-item">
|
2024-10-17 15:51:40 +02:00
|
|
|
<a asp-action="Files" text-translate="true">Files</a>
|
2024-06-19 15:23:10 +02:00
|
|
|
</li>
|
|
|
|
<li class="breadcrumb-item">
|
2024-10-17 15:51:40 +02:00
|
|
|
<a asp-action="Storage" text-translate="true">Storage Provider</a>
|
2024-06-19 15:23:10 +02:00
|
|
|
</li>
|
2024-10-17 15:51:40 +02:00
|
|
|
<li class="breadcrumb-item active" aria-current="page" text-translate="true">Provider</li>
|
2024-06-19 15:23:10 +02:00
|
|
|
</ol>
|
2024-07-25 22:46:02 +09:00
|
|
|
<h2 text-translate="true">@ViewData["Title"]</h2>
|
2024-06-19 15:23:10 +02:00
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
<partial name="_StatusMessage" />
|
2021-04-08 15:32:42 +02:00
|
|
|
|
2019-04-22 09:41:20 +02:00
|
|
|
<div class="row">
|
2022-06-15 14:06:16 +02:00
|
|
|
<div class="col-xl-10 col-xxl-constrain">
|
2019-04-22 09:41:20 +02:00
|
|
|
<form method="post">
|
|
|
|
<div class="form-group">
|
2024-10-17 15:51:40 +02:00
|
|
|
<label asp-for="ContainerName" class="form-label" text-translate="true">Container Name</label>
|
2021-06-06 13:44:54 +02:00
|
|
|
<input asp-for="ContainerName" class="form-control" />
|
2019-04-22 09:41:20 +02:00
|
|
|
<span asp-validation-for="ContainerName" class="text-danger"></span>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2024-10-17 15:51:40 +02:00
|
|
|
<label asp-for="JsonCredentials" class="form-label" text-translate="true">JSON Credentials</label>
|
2021-06-06 13:44:54 +02:00
|
|
|
<input asp-for="JsonCredentials" class="form-control" />
|
2019-04-22 09:41:20 +02:00
|
|
|
<span asp-validation-for="JsonCredentials" class="text-danger"></span>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2021-06-06 13:44:54 +02:00
|
|
|
<label asp-for="Bucket" class="form-label"></label>
|
|
|
|
<input asp-for="Bucket" class="form-control" />
|
2019-04-22 09:41:20 +02:00
|
|
|
<span asp-validation-for="Bucket" class="text-danger"></span>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2021-06-06 13:44:54 +02:00
|
|
|
<label asp-for="Email" class="form-label"></label>
|
|
|
|
<input asp-for="Email" class="form-control" />
|
2019-04-22 09:41:20 +02:00
|
|
|
<span asp-validation-for="Email" class="text-danger"></span>
|
|
|
|
</div>
|
|
|
|
|
2024-10-17 15:51:40 +02:00
|
|
|
<button type="submit" class="btn btn-primary" name="command" value="Save" text-translate="true">Save</button>
|
|
|
|
<a asp-action="Storage" asp-route-forceChoice="true" class="ms-2" text-translate="true">Change Storage provider</a>
|
2019-04-22 09:41:20 +02: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" />
|
2019-04-22 09:41:20 +02:00
|
|
|
}
|