-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeet.html
More file actions
105 lines (98 loc) · 2.6 KB
/
meet.html
File metadata and controls
105 lines (98 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Meet Links | Utkarsh Pandey</title>
<link rel="stylesheet" href="/assets/css.css" type="text/css" />
<style>
:root {
--primary: #2563eb;
--hover: #1e40af;
--bg: #f8fafc;
--card: #ffffff;
--shadow: 0 4px 12px rgba(0,0,0,0.08);
}
body {
background: var(--bg);
font-family: system-ui, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
min-height: 100vh;
}
header {
width: 100%;
background: var(--card);
box-shadow: var(--shadow);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 100;
}
header .left {
font-size: 1.3rem;
font-weight: 600;
color: var(--primary);
}
main {
text-align: center;
margin-top: 12vh;
}
h2 {
font-size: 1.6rem;
color: #111827;
margin-bottom: 2rem;
}
.meet-link {
display: block;
margin: 12px auto;
padding: 14px 32px;
border-radius: 12px;
background: var(--primary);
color: #fff;
text-decoration: none;
font-weight: 500;
letter-spacing: 0.3px;
box-shadow: var(--shadow);
width: fit-content;
transition: all 0.25s ease;
}
.meet-link:hover {
background: var(--hover);
transform: translateY(-2px);
}
</style>
</head>
<body>
<header>
<div class="left">Utkarsh Pandey's open-meeting</div>
</header>
<main>
<h2>Join a Meeting (Live)</h2>
<a id="openMeetBtn" class="meet-link" href="#">
🟢 Open Meet
</a>
<p style="margin-top:20px; max-width:420px; color:#374151; font-size:14px;">
You are about to join a Google Meet in a new tab.<br><br>
Please join only if you are invited by <b>Utkarsh Pandey</b>.
Otherwise, utkarshpandey.com will not be responsible for any inconvenience.
</p>
</main>
<script>
document.getElementById("openMeetBtn").addEventListener("click", function(e){
e.preventDefault();
const confirmJoin = confirm(
"You are about to join a Google Meet in a new tab.\n\nJoin only if invited by Utkarsh Pandey.\n\nDo you want to continue?"
);
if(confirmJoin){
window.open("https://meet.google.com/yec-wgro-cky","_blank");
}
});
</script>
</body>
</html>