Files
boringproxy/webui/confirm.tmpl
2020-10-12 18:39:35 -06:00

25 lines
471 B
Cheetah

<!doctype html>
<html>
<head>
{{.Head}}
</head>
<body>
<main>
<div class='dialog'>
<p>
{{.Message}}
</p>
<div class='button-row'>
<a href="{{.ConfirmUrl}}">
<button class='button red-button'>Confirm</button>
</a>
<a href="{{.CancelUrl}}">
<button class='button green-button'>Cancel</button>
</a>
</div>
</div>
</main>
</body>
</html>