generated from garrettmills/template-npm-typescript
27 lines
754 B
HTML
27 lines
754 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Test Page</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif
|
|
}
|
|
</style>
|
|
<script>
|
|
if ( typeof $ !== 'function' ) {
|
|
window.$ = (...args) => document.querySelector(...args)
|
|
}
|
|
</script>
|
|
<script src="dist/extollo-ui.dist.js" type="module"></script>
|
|
</head>
|
|
<body>
|
|
<ex-session>{"app.name": "Extollo"}</ex-session>
|
|
<ex-page-login></ex-page-login>
|
|
</body>
|
|
</html>
|