-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgroup-event.html
More file actions
73 lines (73 loc) · 3.03 KB
/
group-event.html
File metadata and controls
73 lines (73 loc) · 3.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>My Calendly - Add One-on-One Event Type - Calendly</title>
<link rel="stylesheet" href="one-on-one.css">
</head>
<body>
<div class="section-1">
<div>
<img src="https://assets.calendly.com/packs/frontend/media/logo-square-cd364a3c33976d32792a.png" alt="">
</div>
<div>
<ul>
<p class="active"><a href="">Home</a></p>
<p><a href="">Availability</a></p>
<p><a href="">Integrations</a></p>
<p><a href=""> Help</a></p>
<p><a href="">
<button>M</button>
Account
</a></p>
</ul>
</div>
</div>
<div class="section-2">
<a href="./home.html"><button><i class="fa fa-angle-left" style="font-size:24px;margin-right: 5px;"></i> Back</button></a>
<h1>Add Group Event Type</h1>
</div>
<div class="section-3">
<div>
<div class="dot"></div>
<div>
<h4>What event is this?</h4>
<p><span id="Ename-header"></span><span id="location-header"> No location given</span></p>
</div>
<div>
<a href="./home.html"><button class="cancleBtn">cancel</button></a>
<button class="nxtBtn">Next</button>
</div>
</div>
<hr>
<div>
<label for="">Event name*</label><br>
<input type="text" id="name"/><br>
<label for="">Location</label><br>
<select name="" id="location" onchange="updateLocation()">
<option value="" style="color: grey;">Add a location</option>
<option value="microTeam">Microsoft Teams</option>
<option value="zoom">Zoom</option>
<option value="Google Meet">Google Meet</option>
</select><br>
<label for="">Description</label><br>
<textarea name="des" id="description" cols="30" rows="10" placeholder="Write a summary and any details your invitee should know about the event."></textarea><br>
<label for="">Event Link*</label><br>
<input type="text" id="eventLink"><br>
<label for="">Max invitees in a spot*</label><br>
<input type="text" style="width: 8%;" id="spot"><br>
<input type="checkbox" name="" id="" style="width: 2%;"> <span>Display remaining spots on booking page</span>
</div>
<div>
<section>
<a href="./home.html"><button class="cancleBtn">cancel</button></a>
<button class="nxtBtn">Next</button>
</section>
</div>
</div>
</body>
</html>
<script src="group-event.js"></script>