blob: 31f8d81a672b41359a3617a8462aa161153e0508 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<html>
<head>
<meta charset="UTF-8">
<title>Main</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./vendor/main.css">
<style>
body {
margin: 0 auto;
}
img {
width: 100%;
}
a {
text-decoration: none;
}
</style>
<script src="https://cdn.auth0.com/js/auth0-spa-js/1.13/auth0-spa-js.production.js"></script>
<!-- <script src="https://cdn.auth0.com/js/auth0/9.11/auth0.min.js"></script> -->
</link>
</head>
<body>
<div id="app"></div>
<script src="./main.js"></script>
</body>
</html>
|