-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.3 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="column">
<input type="text" placeholder="idInstance" id="idInstance"><br>
<input type="text" placeholder="apiTokenInstance" id="apiTokenInstance"><br>
<button id="getSettings" onclick="getSettings()">Get Settings</button>
<button id="getStateInstance" onclick="getStateInstance()">Get State Instance</button>
<input type="text" placeholder="Phone Number" id="phoneNumber"><br>
<input type="text" placeholder="text message" id="messageText"><br>
<button id="sendMessage" onclick="sendMessage()">Send Message</button>
<input type="text" placeholder="Phone Number" id="phoneNumber2"><br>
<input type="text" placeholder="URL" id="url"><br>
<button id="sendFileByUrl" onclick="sendFileByUrl()">Send File by URL</button>
</div>
<div class="column">
<label for="responseField">Ответ:</label>
<div id="responseField"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>