-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
68 lines (63 loc) · 2 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
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html lang="pt-br" data-message="...">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Youtube Transcription | Boracodar #30</title>
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div id="app" class="flex">
<header class="grid">
<div class="logo">
<img src="/logo.svg" alt="Logo">
</div>
<form id="form" class="flex">
<div class="input-wrapper flex">
<label class="sr-only" for="url">Cole a URL do YouTube aqui</label>
<input required type="url" name="url" id="url" placeholder="Cole a URL do YouTube aqui">
<i class="ph ph-x-circle"></i>
</div>
<button>
Transcrever
</button>
</form>
</header>
<main>
<div class="wrapper grid">
<div class="video">
<video id="youtubeVideo"></video>
</div>
<div id="transcription" class="transcription">
<button class="copy">
<i class="ph ph-copy-simple"></i>
</button>
<div class="content-wrapper">
<div class="content grid">
<div class="chunk">
<time>00:00</time>
<p>
<span>
Insira a URL
</span>
<span>
do youtube para
</span>
<span>
iniciar a transcrição
</span>
</p>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>