2023-08-16 15:48:04 +00:00
|
|
|
<!doctype html>
|
2018-05-08 12:23:26 +00:00
|
|
|
<html dir="ltr">
|
2019-01-29 16:54:37 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="user-scalable=no,width=device-width,initial-scale=1,maximum-scale=1" />
|
|
|
|
<meta name="description" content="Checkout" />
|
2024-05-23 07:37:23 +00:00
|
|
|
<meta name="theme-color" content="#163735" />
|
2024-02-21 09:13:48 +00:00
|
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
2024-04-02 09:06:18 +00:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
2024-02-21 09:13:48 +00:00
|
|
|
<link
|
2024-04-02 09:06:18 +00:00
|
|
|
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap"
|
|
|
|
rel="stylesheet"
|
2024-02-21 09:13:48 +00:00
|
|
|
/>
|
2019-01-29 16:54:37 +00:00
|
|
|
<title>Checkout</title>
|
|
|
|
</head>
|
2024-07-12 11:47:33 +00:00
|
|
|
<body>
|
2024-04-16 11:40:47 +00:00
|
|
|
<div id="global-spinner" style="position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%)">
|
2024-05-29 10:51:12 +00:00
|
|
|
<div style="display: flex; height: 128px">
|
|
|
|
<svg
|
|
|
|
viewBox="0 0 57 57"
|
|
|
|
height="48px"
|
|
|
|
width="48px"
|
|
|
|
style="position: relative; animation: spin 0.65s linear infinite"
|
|
|
|
>
|
|
|
|
<defs>
|
|
|
|
<linearGradient id="loaderGradient" x1="100%" x2="0%" y1="0%" y2="100%">
|
2024-07-12 11:47:33 +00:00
|
|
|
<stop offset="0%" stop-color="#000000" />
|
|
|
|
<stop offset="100%" stop-color="#EEEEEE" />
|
2024-05-29 10:51:12 +00:00
|
|
|
</linearGradient>
|
|
|
|
</defs>
|
|
|
|
<g fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
|
|
|
|
<g
|
|
|
|
stroke="url(#loaderGradient)"
|
|
|
|
stroke-width="4"
|
|
|
|
transform="translate(-655.000000, -383.000000)"
|
|
|
|
>
|
|
|
|
<circle cx="683.5" cy="411.5" r="26.5" />
|
|
|
|
</g>
|
2024-04-11 09:24:40 +00:00
|
|
|
</g>
|
2024-05-29 10:51:12 +00:00
|
|
|
</svg>
|
|
|
|
</div>
|
2024-04-11 09:24:40 +00:00
|
|
|
</div>
|
|
|
|
|
2019-01-29 16:54:37 +00:00
|
|
|
<div id="app"></div>
|
2024-02-21 09:13:48 +00:00
|
|
|
<script defer type="module" src="/src/main.tsx"></script>
|
2024-04-11 09:24:40 +00:00
|
|
|
|
|
|
|
<style>
|
|
|
|
@keyframes spin {
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
2019-01-29 16:54:37 +00:00
|
|
|
</body>
|
2018-02-15 11:16:12 +00:00
|
|
|
</html>
|