Files
boringproxy/templates/loading.tmpl
2021-12-14 14:44:04 -07:00

25 lines
421 B
Cheetah

<!doctype html>
<html>
<head>
<meta http-equiv="refresh" content="0; URL='{{$.TargetUrl}}'" />
<style>
{{ template "styles.tmpl" }}
.dialog {
display: block;
}
</style>
</head>
<body>
<div class='dialog'>
<div class='dialog__overlay'></div>
<div class='dialog__content'>
<p>
Loading...
</p>
</div>
</div>
</body>
</html>