39 lines
939 B
HTML
39 lines
939 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Moba Script Generator</title>
|
|
<link rel="icon" type="image/x-icon" href="/static/assets/icons/favicon.ico">
|
|
|
|
<!-- Подключение CSS -->
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
|
|
<!-- Подключение JS -->
|
|
<script src="/static/js/main.js" defer></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h2>MobaXterm Script Creator</h2>
|
|
|
|
<form id="licenseForm">
|
|
<label>NAME:</label>
|
|
<input name="name" placeholder="Введите имя" required>
|
|
|
|
<label>VERSION:</label>
|
|
<input name="version" placeholder="Введите версию" required>
|
|
|
|
<button type="submit">Сгенерировать</button>
|
|
</form>
|
|
|
|
<div id="status"></div>
|
|
</div>
|
|
|
|
<footer>
|
|
Автор:
|
|
<a href="https://t.me/prokiller006" target="_blank">icysanta</a>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|