boringproxy/templates/alert.tmpl

30 lines
508 B
Cheetah
Raw Normal View History

2020-10-12 23:26:33 -05:00
<!doctype html>
<html>
<head>
<style>
2021-12-14 15:44:04 -06:00
{{ template "styles.tmpl" }}
.dialog {
display: block;
}
</style>
2020-10-12 23:26:33 -05:00
</head>
<body>
<div class='dialog'>
<div class='dialog__overlay'>
<div class='dialog__content'>
2020-10-12 23:26:33 -05:00
<p>
{{.Message}}
</p>
<div class='button-row'>
<a href="{{.RedirectUrl}}">
<button class='button green-button'>Ok</button>
</a>
</div>
</div>
</div>
2020-10-12 23:26:33 -05:00
</body>
</html>