mirror of
https://github.com/boringproxy/boringproxy.git
synced 2025-02-25 18:55:29 -06:00
23 lines
517 B
Cheetah
23 lines
517 B
Cheetah
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
{{ template "styles.tmpl" }}
|
|
.dialog {
|
|
display: block;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class='dialog'>
|
|
<div class='dialog__overlay'></div>
|
|
<form class='dialog__content' action="/login" method="GET">
|
|
<label for="token">Token:</label>
|
|
<input type="password" id="token" name="access_token">
|
|
<button class='button green-button' type="submit">Login</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|