-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.html
More file actions
34 lines (29 loc) · 837 Bytes
/
Copy pathauth.html
File metadata and controls
34 lines (29 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fanfou OAuth</title>
<link rel="stylesheet" href="css/auth.css">
<style>
</style>
<script defer src="fanfou/crypto-js.min.js"></script>
<script defer src="FanfouLite/cred.js"></script>
<script defer src="fanfou/oauth1.js"></script>
<script defer src="fanfou/fanfou.js"></script>
<script defer src="auth.js"></script>
</head>
<body>
<div id="app">
<div id="pin-section">
<label for="pin-input">Enter PIN:</label>
<input type="text" id="pin-input" />
<button id="submit-pin-btn">Submit</button>
</div>
<iframe id="auth-iframe"></iframe>
<div id="result-section">
<p id="countdown-message"></p>
</div>
</div>
</body>
</html>