forked from HallanZad/AgendaFacilNAF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeedback.html
53 lines (53 loc) · 2.04 KB
/
Feedback.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
53
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback</title>
<link rel="icon" type="image/ico" href="IMAGENS/ICON003.ico">
<link rel="stylesheet" href="style.css">
<script src="JS/Index.js" type="text/javascript"></script>
<style>
input, select {
width: 60%;
padding: 8px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;}
</style>
</head>
<body>
<div class="site-header">
<img src="IMAGENS/logo001.png" width=320px>
<button class="menu-button" onclick="toggleMenu()">Menu</button>
<div class="menu" id="menu">
<a href="Perfil do Cliente.html" class="button">Pagina Inicial</a>
<a href="Dados Cliente.html" class="button">Meu Perfil</a>
<a href="Agendamento.html" class="button">Agendar</a>
<a href="Login Cliente.html" class="button">Sair</a>
</div>
</div>
<div class="container">
<h1><center>DEIXE SUA AVALIAÇÃO</center></h1>
<div class="container2">
<H2><center>A sua avaliação é muito importante para nós!</center></H2>
<form class="form1" action="Feedback Recebido.html">
<label for="name">Nome:</label>
<input type="text" id="name" placeholder="Digite seu nome" required>
<label for="Name">Email:</label>
<input type="email" id="Email" placeholder="[email protected]" required="">
<label for="Name">Conte como foi sua experiência!</label>
<textarea id="feedback" placeholder="Deixe aqui sua avaliação..." required=""></textarea>
<button class="btn" type="submit">Enviar</button>
</form><br>
</div>
<br><br>
</div>
<br><br>
<br><br>
<div class="site-footer">
Copyright © 2024.
</div>
</body>
</html>