-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1.33 KB
/
index.html
File metadata and controls
38 lines (32 loc) · 1.33 KB
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
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WhatsAuth Demo Application</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div id="hasphonenumber" class="w-full h-screen bg-blue-100 flex items-center justify-center">
<div class="w-96 bg-white rounded-xl">
<p class="font-bold text-center mb-4" id="useracclog">useragent</p>
<div class="flex justify-center mt-2 mb-4" id="whatsauthqr">
<div></div>
</div>
<p class="font-bold text-center mb-4" id="whatsauthcounter">counter</p>
<p class="font-bold text-center mb-4" id="logs">log</p>
</div>
</div>
<form id="loginform" onsubmit="event.preventDefault();">
<input type="hidden" name="user_name" id="user_name" value="">
<input type="hidden" name="user_pass" id="user_pass" value="">
<input type="hidden" name="remember_me" value="y">
<button id="login" name="login" value="Login" class="button">Login</button>
</form>
<script>
document.getElementById("useracclog").innerHTML = navigator.userAgent;
</script>
<script src="index.js" type="module"></script>
</body>
</html>