authorizer/templates/app.tmpl

17 lines
482 B
Cheetah
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
2021-12-28 22:46:31 +00:00
<link rel="stylesheet" href="/app/build/index.css">
<script>
window.__authorizer__ = {{.data}}
</script>
</head>
<body>
<div id="root"></div>
2021-12-28 22:46:31 +00:00
<script type="module" src="/app/build/index.js"></script>
</body>
</html>