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