2020-10-12 23:26:33 -05:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2020-10-20 19:52:32 -05:00
|
|
|
<style>
|
2021-12-14 15:44:04 -06:00
|
|
|
|
|
|
|
{{ template "styles.tmpl" }}
|
|
|
|
|
2020-10-20 19:52:32 -05:00
|
|
|
.dialog {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
</style>
|
2020-10-12 23:26:33 -05:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2020-10-20 19:52:32 -05:00
|
|
|
<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>
|
2020-10-20 19:52:32 -05:00
|
|
|
</div>
|
2020-10-12 23:26:33 -05:00
|
|
|
</body>
|
|
|
|
</html>
|