38 lines
1.7 KiB
HTML
38 lines
1.7 KiB
HTML
<html>
|
|
<head>
|
|
<title>LegoLog Stock Editor</title>
|
|
<meta name="viewport">
|
|
<link rel="icon" type="image/svg+xml" href="/res/favicon.svg">
|
|
<link rel="stylesheet" type="text/css" href="/global.css">
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Londrina+Solid&display=swap" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap" rel="stylesheet">
|
|
|
|
<!-- Auth0 - a library for authentication -->
|
|
<script src="https://cdn.auth0.com/js/auth0-spa-js/1.13/auth0-spa-js.production.js"></script>
|
|
|
|
<!-- Components used on this page - they must be included to work -->
|
|
<script type="module" src="/components/components.mjs"></script>
|
|
<script type="module" src="/components/navbar.mjs"></script>
|
|
<script type="module" src="/components/search.mjs"></script>
|
|
<script type="module" src="/components/stock-audit.mjs"></script>
|
|
<script type="module" src="/components/basket-popout.mjs"></script>
|
|
<script type="module" src="/components/immutable-list.mjs"></script>
|
|
<script type="module" src="/components/accessability-popout.mjs"></script>
|
|
<script type="module" src="/components/notificationbar.mjs"></script>
|
|
<script type="module" src="/components/tag.mjs"></script>
|
|
<script type="module" src="/components/super-compact-listing.mjs"></script>
|
|
|
|
<script type="module" src="/index.mjs"></script>
|
|
</head>
|
|
<body>
|
|
<notificationbar-component></notificationbar-component>
|
|
<navbar-component></navbar-component>
|
|
<limited-margin>
|
|
<stock-editor-component></stock-editor-component>
|
|
</limited-margin>
|
|
</body>
|