-
Notifications
You must be signed in to change notification settings - Fork 8
/
success.html
48 lines (47 loc) · 1.4 KB
/
success.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
48
<!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;">
<h2>
Success! Symbl is now dialing into your meeting.
</h2>
<br />
<h3>
At the end of the call, Symbl will send you an email with the
conversation summary.
</h3>
<br />
<button
type="buton"
onclick="window.history.back();"
class="btn btn-primary"
>
Join another meeting
</button>
</div>
</div>
</div>
</body>
</html>