mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Remove xxl breakpoint * Remove code bg * Form updates * Update PoS accordion * Update forms * Fix webhook password toggle * Update highlight js styles * Page updates * Style unformatted checkboxes * Fix typo * Update accordions * Update policies domain mapping * Update toggles and checkboxes * Update storage pages * Fix specter logo filename casing * Update checkout experience view * Update webhook view * Re-add used negative margins * Update bootstrap * POS layout fixes * Decrease size of info icon in main headline * Update BTCPayServer/Views/Stores/ModifyWebhook.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>
55 lines
2.6 KiB
Text
55 lines
2.6 KiB
Text
@model BTCPayServer.Storage.Services.Providers.AmazonS3Storage.Configuration.AmazonS3StorageConfiguration
|
|
@{
|
|
ViewData.SetActivePageAndTitle(ServerNavPages.Services, "Amazon S3 Storage");
|
|
}
|
|
|
|
<h2 class="mb-4">@ViewData["PageTitle"]</h2>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<label asp-for="ContainerName" class="form-label"></label>
|
|
<input class="form-control" asp-for="ContainerName"/>
|
|
<span asp-validation-for="ContainerName" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="SecretKey" class="form-label"></label>
|
|
<input class="form-control" asp-for="SecretKey"/>
|
|
<span asp-validation-for="SecretKey" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="Bucket" class="form-label"></label>
|
|
<input class="form-control" asp-for="Bucket"/>
|
|
<span asp-validation-for="Bucket" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="ServiceUrl" class="form-label"></label>
|
|
<input class="form-control" asp-for="ServiceUrl"/>
|
|
<span asp-validation-for="ServiceUrl" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="ServerSideEncryptionMethod" class="form-label"></label>
|
|
<input class="form-control" asp-for="ServerSideEncryptionMethod"/>
|
|
<span asp-validation-for="ServerSideEncryptionMethod" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="ProfileName" class="form-label"></label>
|
|
<input class="form-control" asp-for="ProfileName"/>
|
|
<span asp-validation-for="ProfileName" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="ChunkedUploadThreshold" class="form-label"></label>
|
|
<input class="form-control" type="number" asp-for="ChunkedUploadThreshold"/>
|
|
<span asp-validation-for="ChunkedUploadThreshold" class="text-danger"></span>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary" name="command" value="Save">Save</button>
|
|
<a asp-action="Storage" asp-route-forceChoice="true">Change Storage provider</a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|