22 lines
694 B
HTML
22 lines
694 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
|
<meta name="author" content="Bryan Pedini">
|
||
|
<title id="page-title">TOTP Web Generator</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<input class="secretBox" type="text" placeholder="secret">
|
||
|
<button class="btn btn-secondary" onclick="send()"><i class="fas fa-key"></i> Get your code</button>
|
||
|
<div class="totp-response">
|
||
|
<span>Your code: <span class="totp-response-code"></span></span><br>
|
||
|
<span>Remaining time: <span class="totp-response-time"></span></span>
|
||
|
</div>
|
||
|
<script src="/static/main.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|