Разработано веб-приложение

This commit is contained in:
2026-03-13 00:36:35 +03:00
commit 7b703f3f97
3 changed files with 127 additions and 0 deletions

45
index.html Normal file
View File

@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>OTP AUTH Parser</title>
<link rel="stylesheet" href="/style.css" type="text/css" />
<script src="/script.js"></script>
</head>
<body>
<form id="form">
<div>
<label for="url">URL:</label>
<input id="url" />
</div>
<div>
<label for="type">type:</label>
<input id="type" />
</div>
<div>
<label for="label">label:</label>
<input id="label" />
</div>
<div>
<label for="secret">secret:</label>
<input id="secret" />
</div>
<div>
<label for="issuer">issuer:</label>
<input id="issuer" />
</div>
<br />
<div id="dynamic"></div>
<br />
<input type="reset" />
</form>
</body>
</html>