-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/components/styles/index.css" />
<title>Upload Video Starter</title>
</head>
<body>
<header>
<div class="container container__header">
<a href="/">
<img
src="/src/components/img/image_1.png"
alt="img not found"
class="logo"
/></a>
<a
href="https://crm.ucreate.org.ua/"
class="header__link"
target="_blank"
rel="noreferrer"
>
Посилання на сайт
</a>
</div>
</header>
<main>
<div class="container">
<section class="navigation">
<!-- Use JavaScript to redirect to master.html with the selected type as a query parameter -->
<a href="#" onclick="redirectToMaster('local')">
<div class="loupe">
<img class="img__loupe" src="/src/components/img/Loupe.svg" alt="Loupe not found" />
</div>
</a>
<div class="line__main"></div>
<!-- Use JavaScript to redirect to master.html with the selected type as a query parameter -->
<a href="#" onclick="redirectToMaster('url')">
<div class="url">
<img class="img__url" src="/src/components/img/URL.svg" alt="URL not found" />
</div>
</a>
</section>
</div>
</main>
<script>
// Function to redirect to master.html with the selected type as a query parameter
function redirectToMaster(type) {
// Redirect to master.html with the selected type as a query parameter
window.location.href = `/select?type=${type}`;
}
</script>
</body>
</html>