mirror of
https://github.com/boringproxy/boringproxy.git
synced 2025-02-25 18:55:29 -06:00
25 lines
471 B
Cheetah
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>
|