mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
92 lines
4.1 KiB
Plaintext
92 lines
4.1 KiB
Plaintext
@using BTCPayServer.Views.Stores
|
|
@using BTCPayServer.Abstractions.Extensions
|
|
@model BTCPayServer.Plugins.Shopify.Models.ShopifySettings
|
|
@{
|
|
ViewData.SetActivePage("shopify", nameof(StoreNavPages), "Shopify", Context.GetStoreData().Id);
|
|
|
|
var shopifyCredsSet = Model?.IntegratedAt.HasValue is true;
|
|
var shopifyUrl = Model?.ShopifyUrl;
|
|
}
|
|
|
|
<partial name="_StatusMessage"/>
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-xxl-constrain col-xl-8">
|
|
<h3 class="mb-3">
|
|
@ViewData["Title"]
|
|
<small>
|
|
<a href="https://docs.btcpayserver.org/Shopify" target="_blank" rel="noreferrer noopener" title="More information...">
|
|
<vc:icon symbol="info" />
|
|
</a>
|
|
</small>
|
|
</h3>
|
|
<p>Connect BTCPay Server to your Shopify checkout experience to accept Bitcoin.</p>
|
|
|
|
@if (!ViewContext.ModelState.IsValid)
|
|
{
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
}
|
|
|
|
<form method="post" id="shopifyForm">
|
|
<div class="form-group">
|
|
<label asp-for="ShopName" class="form-label"></label>
|
|
<div class="input-group">
|
|
@if (!Model?.ShopName?.Contains(".") is true)
|
|
{
|
|
<span class="input-group-text">https://</span>
|
|
}
|
|
<input asp-for="ShopName" class="form-control" readonly="@shopifyCredsSet"/>
|
|
|
|
@if (!shopifyCredsSet || !Model?.ShopName?.Contains(".") is true)
|
|
{
|
|
<span class="input-group-text">.myshopify.com</span>
|
|
}
|
|
</div>
|
|
<span asp-validation-for="ShopName" class="text-danger"></span>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label asp-for="ApiKey" class="form-label"></label>
|
|
<input asp-for="ApiKey" class="form-control" readonly="@shopifyCredsSet"/>
|
|
<span asp-validation-for="ApiKey" class="text-danger"></span>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label asp-for="Password" class="form-label"></label>
|
|
<input asp-for="Password" class="form-control" type="password" value="@Model?.Password" readonly="@shopifyCredsSet"/>
|
|
<span asp-validation-for="Password" class="text-danger"></span>
|
|
</div>
|
|
|
|
@if (shopifyCredsSet)
|
|
{
|
|
<div class="alert alert-warning">
|
|
<p>
|
|
In Shopify please paste following script at <a href="@shopifyUrl/admin/settings/checkout#PolarisTextField1" target="_blank" class="fw-bold" rel="noreferrer noopener"> Settings > Checkout > Order Processing > Additional Scripts</a>
|
|
</p>
|
|
<kbd style="display: block; word-break: break-all;" class="bg-dark">
|
|
@($"<script src='{Url.Action("ShopifyJavascript", "UIShopify", new { storeId = Context.GetRouteValue("storeId") }, Context.Request.Scheme)}'></script>")
|
|
</kbd>
|
|
</div>
|
|
<p class="alert alert-warning">
|
|
In Shopify please add a payment method at <a target="_blank" href="@shopifyUrl/admin/settings/payments" class="fw-bold" rel="noreferrer noopener"> Settings > Payments > Manual Payment Methods</a> with the name <kbd class="bg-dark">Bitcoin with BTCPay Server</kbd>
|
|
</p>
|
|
<p class="alert alert-success">
|
|
Orders on <b>@Model.ShopName</b>.myshopify.com will be marked as paid on successful invoice payment.
|
|
Started: @Model.IntegratedAt.Value.ToBrowserDate()
|
|
</p>
|
|
|
|
<button name="command" type="submit" class="btn btn-danger mt-3" value="ShopifyClearCredentials">
|
|
Stop Shopify calls and clear credentials
|
|
</button>
|
|
}
|
|
else
|
|
{
|
|
<button name="command" type="submit" class="btn btn-primary mt-3" value="ShopifySaveCredentials">
|
|
Save
|
|
</button>
|
|
}
|
|
</form>
|
|
</div>
|
|
</div>
|