-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>API Practice Question</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700,300">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.1.2/css/material-design-iconic-font.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Epilogue:wght@400&family=Finger+Paint&display=swap">
</head>
<body>
<div class="card">
<div id="header">
<h1>API Question from Teal Hedgehog</h1>
</div>
<div id="message-section">
<div class="message" id="bot"><span id="bot-response">Hi Frame Support! I am trying to upload a video to my account using the API. Even though the call to the API is successful, I'm only seeing a qeued black video on the Web App. Please help</span></div>
</div>
<div id="input-section">
<div class="choices" id="choiceButtons">
<button onclick="sendMessage(this.textContent)">Check user permissions</button>
<button onclick="sendMessage(this.textContent)">Check the API Response</button>
<button onclick="sendMessage(this.textContent)">Correct Usage of Endpoint</button>
<!-- Add more buttons with different choices here -->
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>