-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (51 loc) · 1.91 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Bebas+Neue|Roboto:400,700&display=swap" rel="stylesheet">
<title>Podcast to Social</title>
</head>
<body>
<div class="container">
<hgroup>
<h1>Podcast to Social</h1>
<h2 class="h3">Gerador de visualização em vídeo para seus projetos de áudio, de podcast à música.</h2>
</hgroup>
<div class="grupo">
<form data-testid="form" action="/api" method="post">
<label for="cover">
Capa do Podcast / Album <small>(600x600)</small>
<input required type="file" name="cover" id="cover" />
</label>
<label for="background">
Imagem de Fundo <small>(1920x1024)</small>
<input required type="file" name="background" id="background" />
</label>
<label for="subtitle">
Subtítulo (texto superior)
<input required type="text" maxlength="45" placeholder="S01 EP02" name="subtitle" id="subtitle" />
</label>
<label for="titulo">
Título (texto inferior)
<input required type="text" maxlength="30" placeholder="Nome do episódio" name="title" id="title" />
</label>
<label for="audio">
Arquivo de Áudio
<input type="file" name="audio" id="audio" />
</label>
<button type="submit">Enviar</button>
</form>
<div class="exemplo">
<img id="exemple-cover" src="assets/img/placeholder-cover.jpg" alt="Exemplo de capa">
<div class="title-holder">
<div id="epNumber" class="title">S01 EP02</div>
<div id="track" class="title">Nome do Episódio</div>
</div>
</div>
</div>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>