Last active
March 8, 2025 08:36
-
-
Save augustin64/62e4dc5419610e7074f76f7e4d36e780 to your computer and use it in GitHub Desktop.
Specify code-server password in url parameter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>code-server login</title> | |
<link rel="icon" href="./_static/src/browser/media/favicon-dark-support.svg"> | |
<link rel="alternate icon" href="./_static/src/browser/media/favicon.ico"> | |
<link rel="manifest" href="./manifest.json" crossorigin="use-credentials"> | |
<link rel="apple-touch-icon" sizes="192x192" href="./_static/src/browser/media/pwa-icon-192.png"> | |
<link rel="apple-touch-icon" sizes="512x512" href="./_static/src/browser/media/pwa-icon-512.png"> | |
<link href="./_static/src/browser/pages/global.css" rel="stylesheet"> | |
<link href="./_static/src/browser/pages/login.css" rel="stylesheet"> | |
<meta id="coder-options" data-settings="{"base":".","csStaticBase":"./_static","codeServerVersion":"4.2.0"}"> | |
</head> | |
<body> | |
<div class="center-container"> | |
<div class="card-box"> | |
<div class="header"> | |
<h1 class="main">Welcome to code-server</h1> | |
<div class="sub">Please log in below.</div> | |
</div> | |
<div class="content"> | |
<form class="login-form" method="post" action="/login"> | |
<input class="user" type="text" autocomplete="username"> | |
<input id="base" type="hidden" name="base" value="."> | |
<input id="href" type="hidden" name="href"> | |
<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> | |
</form> | |
</div> | |
</div> | |
</div> | |
<script> | |
const queryString = window.location.search; | |
const urlParams = new URLSearchParams(queryString); | |
const password = urlParams.get('password'); | |
document.getElementsByClassName("password")[0].value = password; | |
document.getElementById("href").value = document.location; | |
window.history.pushState("NULL", "Login", "/login"); | |
document.getElementsByClassName("login-form")[0].submit() | |
</script> | |
</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
awesome thx!