-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheventType.html
More file actions
110 lines (110 loc) · 2.89 KB
/
eventType.html
File metadata and controls
110 lines (110 loc) · 2.89 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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 - Create New Event Type - Calendly</title>
<link rel="stylesheet" href="eventType.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 id="passLetter">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>Create New Event Type</h1>
</div>
<div class="section-3">
<div>
<div>
<img src="./images/one_on_one.svg" alt="" />
</div>
<div>
<h2>One-on-One</h2>
<p>Let an invitee pick a time to meet with you.</p>
</div>
<div>
<a href="./one-on-one.html"><button>Create</button></a>
</div>
</div>
<div>
<div>
<img src="./images/group-7.svg" alt="" />
</div>
<div>
<h2>Group</h2>
<p>Let multiple invitees meet with you at one time.</p>
</div>
<div>
<a href="./group-event.html"><button>Create</button></a>
</div>
</div>
<div>
<div>
<img src="./images/collective-4.svg" alt="" />
</div>
<div>
<h2>Collective</h2>
<p>
Host an event with another person and let invitees pick a time when
you’re all available.
</p>
</div>
<div>
<button>Create</button>
</div>
</div>
<div>
<div>
<img src="./images/round_robin-3.svg" alt="" />
</div>
<div>
<h2>Round Robin</h2>
<p>Create an event that cycles between multiple hosts.</p>
</div>
<div>
<button>Create</button>
</div>
</div>
</div>
</body>
</html>
<script>
var nameEmail = JSON.parse(localStorage.getItem("sign-Up"));
var fullName = nameEmail[nameEmail.length - 1].name;
document.getElementById(
"passLetter"
).innerText = `${fullName[0].toUpperCase()}`;
</script>