-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (25 loc) · 756 Bytes
/
Copy pathindex.php
File metadata and controls
31 lines (25 loc) · 756 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Sistema de Comentários | PHP e AJAX</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<section class="content">
<div class="box_form">
<h1>Deixe seu Comentário:</h1>
<form id="form1">
<label for="name">Nome</label><br>
<input type="text" name="name" id="name"/><br><br>
<label for="comment">Comentário</label><br>
<textarea name="comment" id="comment"></textarea><br><br>
<input type="submit" form="form1" class="btn-sub" value="Enviar Comentário"/><br><br>
</form>
</div>
<div class="box_comment">
</div>
</section>
<script src="assets/js/jQuery/jquery-3.5.1.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>