-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmentee.html
56 lines (55 loc) · 2.29 KB
/
mentee.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mentee Scheduler</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<link rel="stylesheet" href="slots_styles.css">
</head>
<body>
<main>
<section id="mentee-section" class="profile-section">
<h2>Mentee Profile</h2>
<div class="calendar-container">
<div class="container">
<div class="left">
<div class="calendar">
<div class="month">
<i class="fas fa-angle-left prev"></i>
<div class="date">October 2024</div>
<i class="fas fa-angle-right next"></i>
</div>
<div class="weekdays">
<div>Sun</div>
<div>Mon</div>
<div>Tue</div>
<div>Wed</div>
<div>Thu</div>
<div>Fri</div>
<div>Sat</div>
</div>
<div class="days"></div>
<div class="goto-today">
<div class="goto">
<input type="text" placeholder="mm/yyyy" class="date-input" />
<button class="goto-btn">Go</button>
</div>
<button class="today-btn">Today</button>
</div>
</div>
</div>
<div class="right">
<div class="today-date">
<div class="event-day">Wed</div>
<div class="event-date">12th October 2024</div>
</div>
<div class="events"></div>
</div>
</div>
</div>
</section>
</main>
<script src="mentee.js"></script>
</body>
</html>