-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3_forms.html
More file actions
171 lines (132 loc) · 3.77 KB
/
index3_forms.html
File metadata and controls
171 lines (132 loc) · 3.77 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>MHG Hotels</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="script/script.js"></script>
</head>
<body>
<section id="header">
<header>
<nav id="menu_direita">
<label for="busca"><b>Busca:</b> </label>
<input id="busca" type="search" placeholder="Digite sua busca"></input>
<input type="submit" value="Buscar"></input>
<a href="index.html"> | Home |</a>
<a href="index2.html"> Quem Somos? |</a>
<a href="#"><b> Faça já sua reserva</b></a>
<div id="menu_esquerda">
<img id="logo" src="images/logo.png">
</div>
</nav>
</header>
</section>
<br>
<fieldset>
<legend><font color="blue" size="5">Dados Pessoais</font></legend>
<table>
<tr>
<td>Nome: </td>
<td><input type="text" name="nome"></input></td>
<td>Sobrenome:</td>
<td><input type="text" name="sobrenome"></input></td>
</tr>
<tr>
<td>
RG:
</td>
<td>
<input type="text" name="rg" size="8"></input>
</td>
</tr>
<tr>
<td>
CPF:
</td>
<td>
<input type="text" name="cpf" size="7"> -</input>
<input type="text" name="cpf2" size="3"></input>
</td>
</tr>
<tr>
<td>E-mail: </td>
<td><input type="text" name="email" placeholder="Ex: mhghotels@mhg.com"></input></td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend><font color="blue" size="5">Informações sobre o usuário</font></legend>
<table>
<tr>
<td>Login de usuário: </td>
<td><input type="text" name="login"></input></td>
</tr>
<tr>
<td>Senha:</td>
<td><input type="password" name="senha" placeholder="Ao digitar não deve exibir a senha"></input></td>
</tr>
<tr>
<td>Confirme a Senha:</td>
<td><input type="password" name="senha2" placeholder="Ao digitar não deve exibir a senha"></input></td>
</tr>
</table>
</fieldset>
<br>
<br>
<fieldset>
<legend><font color="blue" size="5">Informações sobre a Compra</font></legend>
<table>
<tr>
<td>
Escolha a quantidade de pessoas para hospedar:</td>
<td>
<select name="quant_pessoas" id="pessoas">
<option value="1">1 pessoa</option>
<option value="2">2 pessoas</option>
</select>
</td>
</tr>
<tr>
<td>
Escolha entre as opçoes de quartos:
</td>
<td class="opcoes_quartos">
<input type="radio" name="tipos_quartos" value="100" id="box1" onclick="exibirValor(1)">Quarto economico - 3 dias. <br>
<input type="radio" name="tipos_quartos" value="150" id="box2" onclick="exibirValor(2)">Quarto economico - 5 a 7 dias. <br>
<input type="radio" name="tipos_quartos" value="200" id="box3" onclick="exibirValor(3)">Quarto executivo - 3 dias. <br>
<input type="radio" name="tipos_quartos" value="250" id="box4" onclick="exibirValor(4)">Quarto executivo - 5 a 7 dias.<br>
</td>
</tr>
<tr>
<td>
Escolha a forma de pagamento:
</td>
<td>
<input type="radio" name="pagamento" value="dinheiro">Dinheiro</input><br>
<input type="radio" name="pagamento" value="cartao">Cartão de Crédito</input><br>
<input type="radio" name="pagamento" value="cheque">Cheque</input><br>
</td>
</tr>
<tr>
<tr>
<td></td>
<td style="color:blue">
<p id="subtotal_compra"></p>
</td>
</tr>
</tr>
</table>
</fieldset>
<br>
<div align="center" id="botoes">
<input id="botaoform" type="submit" value="Enviar" name="enviar_dados" align="center" onclick="cadastropronto()" onclick="window.location.reload(true);"></input>
</div><br><br><br>
<footer id="rodape">
<p><b>2006-2018 - Todos os direitos reservados para MHG Hotels e associados.®</b></p>
</footer>
</body>
</html>