-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
85 lines (82 loc) · 2.64 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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" style="justify-content: center;">
<div
class="col-sm-4"
id="form"
style="
border: 1px solid;
padding: 10px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 10px,
rgba(0, 0, 0, 0.23) 0px 3px 10px;
"
>
<form action="/join" method="POST">
<div class="form-group">
<label for="exampleFormControlInput1">Email Address</label>
<input
type="email"
class="form-control"
id="userEmail"
name="email"
placeholder="[email protected]"
required
/>
</div>
<div class="form-group">
<label for="exampleFormControlSelect1">Meeting Name</label>
<input
type="text"
class="form-control"
id="meetingName"
name="meetingName"
required
/>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Meeting Invite</label>
<textarea
class="form-control"
id="meetingInvite"
name="meetingInvite"
rows="5"
placeholder="Paste Zoom Meeting Invite here..."
></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</body>
<script>
var d = new Date();
var date = d.getUTCDate();
var month = d.getUTCMonth() + 1;
var year = d.getUTCFullYear();
var dateStr = month + "/" + date;
document.getElementById("meetingName").value = "Meeting - " + dateStr;
</script>
</html>