Update
parent
aa6c3668bf
commit
b3cfe2fff1
11
README.md
11
README.md
|
@ -1,9 +1,11 @@
|
||||||
# MobaXterm-GenKey
|
# MobaXterm-GenKey
|
||||||
|
|
||||||
   
|

|
||||||
 
|
  
|
||||||

|
 
|
||||||
|

|
||||||
|
|
||||||
|
**FOR EDUCATIONAL AND TESTING PURPOSE ONLY**
|
||||||
|
|
||||||
## Demo
|
## Demo
|
||||||
|
|
||||||
|
@ -27,9 +29,10 @@ docker run -d -p 5000:5000 seeleo/mobaxterm-genkey:latest
|
||||||
|
|
||||||
## Screenshot
|
## Screenshot
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
> - https://github.com/flygon2018/MobaXterm-keygen
|
> - https://github.com/flygon2018/MobaXterm-keygen
|
||||||
|
> - https://github.com/malaohu/MobaXterm-GenKey
|
||||||
> - https://51.ruyo.net/17008.html
|
> - https://51.ruyo.net/17008.html
|
||||||
|
|
31
index.html
31
index.html
|
@ -20,13 +20,16 @@
|
||||||
background: #f5f5f5;
|
background: #f5f5f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
h1 {
|
||||||
margin-bottom: 10px;
|
color: #303F9F;
|
||||||
|
text-justify: newspaper;
|
||||||
|
text-align: justify;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
.container {
|
||||||
color: #6C809A;
|
margin-top: 10px;
|
||||||
text-justify: newspaper;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
|
@ -55,6 +58,7 @@
|
||||||
font-family: Roboto, Arial, sans-serif;
|
font-family: Roboto, Arial, sans-serif;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
background-color: #242424;
|
background-color: #242424;
|
||||||
|
color: #212121;
|
||||||
}
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
|
@ -82,11 +86,6 @@
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.formcontainer {
|
|
||||||
text-align: left;
|
|
||||||
margin: 24px 50px 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
padding: 16px 0;
|
padding: 16px 0;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
@ -98,7 +97,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.github span {
|
.github span {
|
||||||
color: #242424;
|
color: #212121;
|
||||||
font-size: smaller;
|
font-size: smaller;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,19 +113,17 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#btn-reset {
|
#btn-reset {
|
||||||
background-color: #75BBA7;
|
background-color: #757575;
|
||||||
}
|
}
|
||||||
|
|
||||||
#btn-submit {
|
#btn-submit {
|
||||||
background-color: #6C809A;
|
background-color: #3F51B5;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<form action="./gen" mothod="get">
|
<form action="./gen" mothod="get">
|
||||||
<h1>MobaXterm GenKey</h1>
|
<h1>MobaXterm GenKey</h1>
|
||||||
<div class="formcontainer"></div>
|
|
||||||
<hr/>
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<label for="name"><strong>Name</strong></label>
|
<label for="name"><strong>Name</strong></label>
|
||||||
<label>
|
<label>
|
||||||
|
@ -135,7 +132,7 @@
|
||||||
<div id="space"></div>
|
<div id="space"></div>
|
||||||
<label for="ver"><strong>Version</strong></label>
|
<label for="ver"><strong>Version</strong></label>
|
||||||
<label>
|
<label>
|
||||||
<input name="ver" placeholder="Enter Version (24.1)" pattern="[0-9]+(\.[0-9]+)?" required type="text">
|
<input name="ver" pattern="[0-9]+(\.[0-9]+)?" placeholder="Enter Version (24.1)" required type="text">
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<button id="btn-reset" type="reset">Reset</button>
|
<button id="btn-reset" type="reset">Reset</button>
|
||||||
|
|
Loading…
Reference in New Issue