Fix loading page

This commit is contained in:
Anders Pitman 2020-10-20 17:58:19 -06:00
parent 80d7f2115b
commit ef660f61ae

View File

@ -3,15 +3,22 @@
<head> <head>
<meta http-equiv="refresh" content="0; URL='{{$.TargetUrl}}'" /> <meta http-equiv="refresh" content="0; URL='{{$.TargetUrl}}'" />
{{.Head}} {{.Head}}
<style>
.dialog {
display: block;
}
</style>
</head> </head>
<body> <body>
<main> <div class='dialog'>
<div class='dialog'> <div class='dialog__overlay'></div>
<div class='dialog__content'>
<p> <p>
Loading... Loading...
</p> </p>
</div> </div>
</main> </div>
</body> </body>
</html> </html>