18 lines
604 B
HTML
18 lines
604 B
HTML
<!doctype html>
|
|
<html class="h-full" lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, viewport-fit=cover maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<title>Billing</title>
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-title" content="Billing" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="white" />
|
|
</head>
|
|
<body class="sm:overscroll-y-none no-scrollbar">
|
|
<div id="app" class="h-full"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|