-
Notifications
You must be signed in to change notification settings - Fork 17
/
post.html
42 lines (42 loc) · 1.15 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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Post</title>
<link rel="stylesheet" href="css/styles.css" />
<script src="js/scripts.js" defer></script>
</head>
<body>
<p id="loading">Carregando...</p>
<div id="post" class="hide">
<a href="index.html">Voltar</a>
<div id="post-container"></div>
<h2>Comentários:</h2>
<form id="comment-form">
<div>
<label for="email">Seu e-mail:</label>
<input
type="email"
name="email"
id="email"
placeholder="Digite seu e-mail"
required
/>
</div>
<div>
<label for="body">Comentário:</label>
<textarea
name="body"
id="body"
placeholder="Digite seu comentário"
required
></textarea>
</div>
<input type="submit" value="Enviar" />
</form>
<div id="comments-container"></div>
</div>
</body>
</html>