-
Notifications
You must be signed in to change notification settings - Fork 8
/
error.html
47 lines (46 loc) · 1.47 KB
/
error.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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<title>Symbl AI Personal Assistant</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<div class="jumbotron text-center" id="header">
<h1>Symbl AI Personal Assistant</h1>
<br />
<p>
Fill in the information below to have Symbl join your conversation
</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12" style="text-align: left;">
<h4>
Something went wrong, make sure that
<ul>
<li>You are using the correct App ID and App Secret</li>
<li>You have entered in the correct Zoom Meeting Invite</li>
<li>You have Symbl Minutes available for consumption</li>
</ul>
</h4>
<button
type="buton"
onclick="window.history.back();"
class="btn btn-primary"
>
Join another meeting
</button>
</div>
</div>
</div>
</body>
</html>