btcpayserver/BTCPayServer/Views/Invoice/Checkout.cshtml

134 lines
4.6 KiB
Plaintext
Raw Normal View History

@addTagHelper *, Meziantou.AspNetCore.BundleTagHelpers
@model PaymentModel
2017-09-13 08:47:34 +02:00
@{
Layout = null;
2017-09-13 08:47:34 +02:00
}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
2017-12-02 06:13:11 +01:00
<title>BTCPay Invoice</title>
2017-09-13 08:47:34 +02:00
<bundle name="wwwroot/bundles/checkout-bundle.min.css" />
<script type="text/javascript">
@Model.ToJSVariableModel("srvModel")
</script>
<bundle name="wwwroot/bundles/checkout-bundle.min.js" />
2017-09-13 08:47:34 +02:00
</head>
<body style="background: #E4E4E4">
<noscript>
<center style="padding: 2em">
<h2>Javascript is currently disabled in your browser.</h2>
<h5>Please enable Javascript and refresh this page for the best experience.</h5>
2017-09-13 08:47:34 +02:00
<p>Alternatively, click below to continue to our HTML-only invoice.</p>
2017-09-13 08:47:34 +02:00
<form action="/invoice-noscript" method="GET">
<button style="text-decoration: underline; color: blue">Continue to javascript-disabled invoice &gt;</button>
</form>
</center>
</noscript>
2017-09-13 08:47:34 +02:00
<!--[if lte IE 8]>
<center style="padding: 2em">
<form action="/invoice-noscript" method="GET">
<button style="text-decoration: underline; color: blue">Continue to legacy browser compatible invoice page
</button>
</form>
</center>
<![endif]-->
2017-09-13 08:47:34 +02:00
<invoice>
<div class="no-bounce" id="checkoutCtrl">
<div class="modal page">
2018-03-23 05:15:54 +01:00
<div class="modal-dialog open opened enter-purchaser-email" role="document">
<div class="modal-content long">
<div class="content">
<div class="invoice">
@Html.Partial("Checkout-Body")
</div>
</div>
</div>
<div style="margin-top: 10px; text-align: right;">
@* Not working because of nsSeparator: false, keySeparator: false,
{{$t("nested.lang")}} >>
*@
2018-03-23 05:16:38 +01:00
<select class="cmblang reverse invisible" onchange="changeLanguage($(this).val())">
<option value="en-US">English</option>
<option value="de-DE">Deutsch</option>
<option value="ja-JP">日本語</option>
<option value="fr-FR">Français</option>
<option value="es-ES">Spanish</option>
</select>
<script>
$(function () {
2018-03-23 05:02:53 +01:00
if (urlParams.lang) {
$(".cmblang").val(urlParams.lang);
}
$('select').prettyDropdown({
classic: false,
height: 30,
reverse: true,
hoverIntent: 5000
});
});
</script>
</div>
</div>
</div>
</div>
</invoice>
<script type="text/javascript">
// initialization
i18next.init({
lng: 'en',
fallbackLng: 'en',
nsSeparator: false,
keySeparator: false,
resources: {
en: { translation: locales_en },
de: { translation: locales_de },
es: { translation: locales_es },
ja: { translation: locales_ja },
fr: { translation: locales_fr }
},
});
2018-03-23 05:16:38 +01:00
function changeLanguage(lang) {
i18next.changeLanguage(lang);
}
if (urlParams.lang) {
changeLanguage(urlParams.lang);
}
const i18n = new VueI18next(i18next);
// TODO: Move all logic from core.js to Vue controller
Vue.config.ignoredElements = [
'line-items',
'low-fee-timeline',
// Ignoring custom HTML5 elements, eg: bp-spinner
/^bp-/
];
var checkoutCtrl = new Vue({
i18n: i18n,
el: '#checkoutCtrl',
components: {
qrcode: VueQr
},
data: {
2018-03-23 05:02:53 +01:00
srvModel: srvModel,
expiringSoon: false
}
});
</script>
2017-09-13 08:47:34 +02:00
</body>
</html>