-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreatePET.html
More file actions
30 lines (28 loc) · 1.2 KB
/
createPET.html
File metadata and controls
30 lines (28 loc) · 1.2 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
<ul style="width: 100%">
<li><h2>Cadastro de PET</h2></li>
<li>
<div class="div-signIn">
<form data-form-name="formCreatePET" action="/insert/pet" method="POST">
<div class="div-field">
Nome:
<input name="name" type="text" placeholder="Rex"/>
</div>
<div class="div-field">
Raça:
<input name="race" type="text" placeholder="Vira-lata"/>
</div>
<div class="div-field">
Idade:
<input name="age" type="text" placeholder="00"/>
</div>
<div class="div-field">
<span >Foto: </span>
<input name="photo" type="file" style="color: ghostwhite; width: 50%; float: left"/>
</div>
<button class="btn" onclick="sendForm('#formCreatePET')"
style="background-color: darkblue; width: 40%; margin-top: 10px; float: right"><span
style="font-size: large; color: white; margin-top: 5px">Cadastrar</span></button>
</form>
</div>
</li>
</ul>