-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
47 lines (46 loc) · 1.41 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
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Тестовое</title>
</head>
<body>
<div class="container">
<div class="input-form">
<div class="inputs">
idInstance
<input id="instance" type="text" value="">
API Token
<input id="token" type="text" value="">
<button class="method" id="get-settings">getSettings</button>
<button class="method" id="get-state-instance">getStateInstance</button>
</div>
<div class="inputs">
Number
<input id="number_1" type="text" value="">
Message
<textarea id="message"></textarea>
<button class="method" id="send-message">sendMessage</button>
</div>
<div class="inputs">
Number
<input id="number_2" type="text" value="">
URL
<input id="URL" type="text" value="">
File name
<input id="file-name" type="text" value="">
<button class="method" id="send-file-by-url">sendFileByURL</button>
</div>
</div>
<div class="response">
Ответ:
<div class="area">
<p class="text"></p>
</div>
</div>
</div>
<script src="api.js"></script>
</body>
</html>