Commit 72fb1b68 by Ian Gustavo

atualizei de novo

parent ef031e74
...@@ -4,9 +4,19 @@ ...@@ -4,9 +4,19 @@
<h2>Cadastrar Animal</h2> <h2>Cadastrar Animal</h2>
<form action="/cadastrar" method="POST"> <form action="/cadastrar" method="POST">
<input type="text" name="nome" placeholder="Nome" required><br><br> <input type="text"
name="nome"
<input type="text" name="especie" placeholder="Espécie" required><br><br> placeholder="Nome"
pattern="^[A-Za-zÀ-ÿ\s]+$"
oninput="this.value = this.value.replace(/[0-9]/g, '');"
required><br><br>
<input type="text"
name="especie"
placeholder="Espécie"
pattern="^[A-Za-zÀ-ÿ\s]+$"
oninput="this.value = this.value.replace(/[0-9]/g, '');"
required><br><br>
<input type="number" <input type="number"
name="idade" name="idade"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment