pull/15/head
Laurence Luo 2024-06-17 10:22:45 +08:00
parent b3cfe2fff1
commit a22c9dea14
No known key found for this signature in database
GPG Key ID: 76D108A29460F5F9
2 changed files with 55 additions and 13 deletions

View File

@ -13,7 +13,7 @@
## Local ## Local
`Python 3` Required **Python 3** Required
``` ```
pip install --no-cache-dir -r requirements.txt pip install --no-cache-dir -r requirements.txt
@ -29,7 +29,8 @@ docker run -d -p 5000:5000 seeleo/mobaxterm-genkey:latest
## Screenshot ## Screenshot
![mobaxterm seeleo com](https://github.com/malaohu/MobaXterm-GenKey/assets/12462465/64634131-798f-4070-a400-9b7a99dee557) ![1](https://github.com/malaohu/MobaXterm-GenKey/assets/12462465/fa319fe6-b75c-404f-b6fb-59290cda0d66)
![2](https://github.com/malaohu/MobaXterm-GenKey/assets/12462465/ea5387f5-144a-4b1c-a8a8-0847a0912223)
## Credits ## Credits

View File

@ -1,7 +1,8 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<head> <head>
<title>MobaXterm Keygen</title> <title>MobaXterm GenKey</title>
<link href="https://fonts.googleapis.cnpmjs.org/css?family=Roboto:300,400,500,700" rel="stylesheet"> <link href="https://fonts.googleapis.cnpmjs.org/css?family=Roboto:300,400,500,700" rel="stylesheet">
<style> <style>
body { body {
@ -112,45 +113,85 @@
vertical-align: middle; vertical-align: middle;
} }
#btn-reset { #btnReset {
margin-top: 15px;
background-color: #757575; background-color: #757575;
} }
#btn-submit { #btnSubmit {
background-color: #3F51B5; background-color: #3F51B5;
} }
#lblName, #lblVersion {
font-weight: bold;
}
#inputName, #inputVersion {
height: 35px;
margin-top: 10px;
border: 1px solid #ccc;
padding: 5px 5px 5px 10px;
}
#inputName {
width: 300px;
height: 47px;
color: #333;
}
#inputVersion {
width: 283px;
height: 35px;
}
</style> </style>
</head> </head>
<body> <body>
<form action="./gen" mothod="get"> <form action="./gen" mothod="get">
<h1>MobaXterm&ensp;GenKey</h1> <h1>MobaXterm&ensp;GenKey</h1>
<div class="container"> <div class="container">
<label for="name"><strong>Name</strong></label> <label for="name" id="lblName">Name</label>
<label> <label>
<input name="name" placeholder="Enter Name" required type="text"> <input name="name" id="inputName" placeholder="Enter Name" required type="text">
</label> </label>
<div id="space"></div> <div id="space"></div>
<label for="ver"><strong>Version</strong></label> <label for="ver" id="lblVersion">Version</label>
<label> <label>
<input name="ver" pattern="[0-9]+(\.[0-9]+)?" placeholder="Enter Version (24.1)" required type="text"> <input name="ver" id="inputVersion" type="number" placeholder="Enter Version (24.1)" step="0.1" min="0" />
</label> </label>
</div> </div>
<button id="btn-reset" type="reset">Reset</button> <button id="btnReset" type="reset">Reset</button>
<button id="btn-submit" type="submit">Generate</button> <button id="btnSubmit" type="submit">Generate</button>
<div class="github"> <div class="github">
<label> <label>
</label> </label>
<span> <span>
<a href="https://github.com/lzcapp/MobaXterm-GenKey" style="text-decoration: none;"> <a href="https://github.com/lzcapp/MobaXterm-GenKey" style="text-decoration: none;">
<img src="https://github.githubassets.com/favicons/favicon.svg"> <img src="https://github.githubassets.com/favicons/favicon.svg" alt="GitHub">
MobaXterm-GenKey MobaXterm-GenKey
</a> </a>
forked from <span id="forked">forked from</span>
<a href="https://github.com/malaohu/MobaXterm-GenKey" style="text-decoration: none;"> <a href="https://github.com/malaohu/MobaXterm-GenKey" style="text-decoration: none;">
malaohu malaohu
</a> </a>
</span> </span>
</div> </div>
</form> </form>
<script>
const userLanguage = navigator.language || navigator.userLanguage;
const languageCode = userLanguage.substring(0, 2);
console.log(languageCode);
if (languageCode === "zh") {
document.documentElement.lang = "zh";
document.getElementById("lblName").innerHTML = "用户名"
document.getElementById("inputName").placeholder = "请输入用户名"
document.getElementById("lblVersion").innerHTML = "版本"
document.getElementById("inputVersion").placeholder = "请输入版本24.1"
document.getElementById("btnReset").innerHTML = "清空"
document.getElementById("btnSubmit").innerHTML = "生成"
document.getElementById("forked").innerHTML = "分叉自"
}
</script>
</body> </body>
</html> </html>