46 lines
1.0 KiB
HTML
46 lines
1.0 KiB
HTML
<!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>
|