Files
boringproxy/webui/alert.tmpl
Anders Pitman 9882017d5a Add ClientAddress
Allows tunnels to specify what address the client with connect to
for upstream connections.

Also changed the tunnel-adder UI.

Also fixed a bug where invalid domains would crash. Needed to
properly return an error dialog.
2020-10-20 18:52:32 -06:00

29 lines
486 B
Cheetah

<!doctype html>
<html>
<head>
{{.Head}}
<style>
.dialog {
display: block;
}
</style>
</head>
<body>
<div class='dialog'>
<div class='dialog__overlay'>
<div class='dialog__content'>
<p>
{{.Message}}
</p>
<div class='button-row'>
<a href="{{.RedirectUrl}}">
<button class='button green-button'>Ok</button>
</a>
</div>
</div>
</div>
</body>
</html>