mirror of
https://github.com/coder/code-server.git
synced 2026-05-12 15:27:25 +02:00
* add customization options for the login page * add unit tests * add test for correct welcome text when none is set but app-name is Signed-off-by: niwla23 <46248939+niwla23@users.noreply.github.com> * add test for no app-name set and check in title too Signed-off-by: niwla23 <46248939+niwla23@users.noreply.github.com> Signed-off-by: niwla23 <46248939+niwla23@users.noreply.github.com> Co-authored-by: Joe Previte <jjprevite@gmail.com>
62 lines
2.4 KiB
HTML
62 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="style-src 'self'; script-src 'self' 'unsafe-inline'; manifest-src 'self'; img-src 'self' data:; font-src 'self' data:;"
|
|
/>
|
|
<title>{{APP_NAME}} login</title>
|
|
<link rel="icon" href="{{CS_STATIC_BASE}}/src/browser/media/favicon-dark-support.svg" />
|
|
<link rel="alternate icon" href="{{CS_STATIC_BASE}}/src/browser/media/favicon.ico" />
|
|
<link rel="manifest" href="{{BASE}}/manifest.json" crossorigin="use-credentials" />
|
|
<link rel="apple-touch-icon" sizes="192x192" href="{{CS_STATIC_BASE}}/src/browser/media/pwa-icon-192.png" />
|
|
<link rel="apple-touch-icon" sizes="512x512" href="{{CS_STATIC_BASE}}/src/browser/media/pwa-icon-512.png" />
|
|
<link href="{{CS_STATIC_BASE}}/src/browser/pages/global.css" rel="stylesheet" />
|
|
<link href="{{CS_STATIC_BASE}}/src/browser/pages/login.css" rel="stylesheet" />
|
|
<meta id="coder-options" data-settings="{{OPTIONS}}" />
|
|
</head>
|
|
<body>
|
|
<div class="center-container">
|
|
<div class="card-box">
|
|
<div class="header">
|
|
<h1 class="main">{{WELCOME_TEXT}}</h1>
|
|
<div class="sub">Please log in below. {{PASSWORD_MSG}}</div>
|
|
</div>
|
|
<div class="content">
|
|
<form class="login-form" method="post">
|
|
<input class="user" type="text" autocomplete="username" />
|
|
<input id="base" type="hidden" name="base" value="{{BASE}}" />
|
|
<input id="href" type="hidden" name="href" value="" />
|
|
<div class="field">
|
|
<input
|
|
required
|
|
autofocus
|
|
class="password"
|
|
type="password"
|
|
placeholder="PASSWORD"
|
|
name="password"
|
|
autocomplete="current-password"
|
|
/>
|
|
<input class="submit -button" value="SUBMIT" type="submit" />
|
|
</div>
|
|
{{ERROR}}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
// Inform the backend about the path since the proxy might have rewritten
|
|
// it out of the headers and cookies must be set with absolute paths.
|
|
const el = document.getElementById("href")
|
|
if (el) {
|
|
el.value = location.href
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|