-
Notifications
You must be signed in to change notification settings - Fork 16
/
post.html
40 lines (36 loc) · 1.08 KB
/
post.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ninjagram</title>
</head>
<body>
<header>
<a href="feed.html">retornar</a>
<img src="assets/logo-dark.png" alt="Ninjagram" />
</header>
<div class="content">
<form action="" method="POST">
<div class="input-control">
<label>Autor</label><br>
<input type="text" name="autor" class="input" placeholder="Digite seu nome">
</div>
<div class="input-control">
<label>Título</label><br>
<input type="text" name="titulo" class="input" placeholder="Conte um pouco sobre sua foto">
</div>
<div class="input-control">
<label>URL da Imagem</label><br>
<input type="url" name="url-imagem" class="input" placeholder="https://site.com.br/imagem.jpg">
</div>
<div class="actions">
<button type="submit">
Publicar
</button>
</div>
</form>
</div>
</body>
</html>