-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
60 lines (60 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rise8 Meeting Scheduler</title>
<base target="_top">
<link rel="stylesheet" href="src/frontend/style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
</head>
<body style="display: flex; justify-content: center; margin: 0;">
<div class="app__container">
<div class="schedule__container">
<span class="branding__wrap">
<a class="branding" href="https://rise8.us" target="_blank">
<div class="branding__content">
<p class="powered__by">POWERED BY</p>
<p class="company">Risers</p>
</div>
</a>
</span>
<div id="meetingInfo" class="meeting__info">
<div id="logo" class="logo">
<img src="https://d3v0px0pttie1i.cloudfront.net/uploads/organization/logo/3296535/895ca01b.png" alt="Rise8" width="200px"/>
</div>
<div id="infoBlock" class="info__block"></div>
</div>
<div id="selectionContainer" class="selection__container">
<div id="dateTimeWrap" class="datetime__wrap">
<h3 id="calendarTitle" class="calendar__title"></h3>
<div id="calendarWrap" class="calendar__wrap">
<span id="calendar" class="calendar__container"></span>
<span id="time" class="time__container"></span>
</div>
</div>
<div id="detailsWrap" class="details__wrap hidden">
<h3>Input Details</h3>
<div class="details__container">
<div id="fullNameWrap" class="input__wrap">
<label for="fullName">Name: *</label>
<input id="fullName" type="text" name="fullName" minlength="2" required autocomplete="name"></input>
</div>
<div id="mailWrap" class="input__wrap">
<label for="mail">Email: *</label>
<input id="mail" type="email" name="mail" minlength="5" required autocomplete="email"></input>
</div>
<div class="input__wrap hidden">
<label for="question0">Please share anything that will help prepare for our meeting.</label>
<textarea id="question0" name="question0" style="margin-bottom: -3px;"></textarea>
</div>
</div>
<button id="scheduleEventButton" class="schedule__event">
<h4>Schedule Event</h4>
<div id="scheduleIcon" style="max-height: 24px;"></div>
</button>
</div>
</div>
</div>
</div>
<script src="src/frontend/app.js" type="module"></script>
</body>
</html>