-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (54 loc) · 2.22 KB
/
Copy pathindex.html
File metadata and controls
61 lines (54 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AudioScribe - YouTube Transcript Generator</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="header">
<div class="logo">
<span class="logo-icon">🎙️</span>
<h1>AudioScribe</h1>
</div>
<p class="subtitle">Transform YouTube videos into accurate transcripts instantly</p>
</header>
<main class="main-content">
<div class="form-container">
<div class="input-group">
<label for="yt-url" class="input-label">YouTube Video URL</label>
<div class="input-wrapper">
<input
type="url"
id="yt-url"
placeholder="https://www.youtube.com/watch?v=..."
class="url-input"
autocomplete="off"
/>
<div class="input-status" id="input-status"></div>
</div>
</div>
<button id="submit-btn" class="submit-button" onclick="submitForm()">
<span class="button-text">Generate Transcript</span>
<span class="button-icon">📤</span>
</button>
</div>
<div class="response-container" id="response-container">
<div class="loading" id="loading">
<div class="spinner"></div>
<p>Processing your video...</p>
</div>
<div class="response" id="response"></div>
<div class="error" id="error"></div>
</div>
</main>
<footer class="footer">
<p>© 2024 AudioScribe. Simple. Fast. Accurate.</p>
</footer>
</div>
<script src="main.js"></script>
</body>
</html>