37 lines
1.6 KiB
HTML
37 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<link rel="icon" type="image/png" href="/favicon.png"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>Payment System</title>
|
|
<style>.app-loading-text{font-family:"PingFang SC","Microsoft YaHei",sans-serif;position:fixed;left:0;right:0;text-align:center;top:50%;transform:translateY(-50%);font-size:20px}</style>
|
|
</head>
|
|
<body>
|
|
<div id="root">
|
|
<div class="app-loading-text">
|
|
<div class="loader">
|
|
<img src="/logo.svg" alt="">
|
|
</div>
|
|
<div style="margin-top: 20px;color:#333;">
|
|
<div class="loader">
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" width="50"
|
|
height="50" style="shape-rendering: auto; display: inline-block; background: transparent;">
|
|
<g>
|
|
<circle stroke-dasharray="117.80972450961724 41.269908169872416" r="25" stroke-width="4"
|
|
stroke="#43ABFF" fill="none" cy="50" cx="50">
|
|
<animateTransform keyTimes="0;1" values="0 50 50;360 50 50" dur="1s"
|
|
repeatCount="indefinite" type="rotate"
|
|
attributeName="transform"></animateTransform>
|
|
</circle>
|
|
</g>
|
|
</svg>
|
|
</div>
|
|
<div>Payment System resources loading ...</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|