-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (34 loc) · 1.18 KB
/
index.html
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
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title id="titleWwebJs">Whatsapp API</title>
<!-- This parts is optional, just for improve the styles -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="dist/css/index.css">
</head>
<body>
<div id="app">
<h1>Whatsapp API</h1>
<hr>
<br>
Status <span id="badgeStatusServer" class="badge badge-secondary">Loading...</span>
<br>
Server <span id="serverWwebJs" class="badge badge-secondary">Loading...</span>
<img src="" alt="QR Code" id="qrcode">
<h3>Logs:</h3>
<ul class="logs"></ul>
</div>
<div id="response" class="response">
<h3>Response Server:</h3>
<pre id="responseServer">
//response server
</pre>
</div>
<script src="plugins/jquery/jquery.min.js" crossorigin="anonymous"></script>
<script src="plugins/socket.io/socket.io.js" crossorigin="anonymous"></script>
<script src="plugins/moment/moment-with-locales.min.js" crossorigin="anonymous"></script>
<script src="dist/js/index.js" crossorigin="anonymous"></script>
</body>
</html>