Advertisement
AllyssonAyslan

foosbalForm.html

Sep 25th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://thymeleaf.org"
  3.     xmlns:layout="http://www.ultraq.net.nz/thymeleaft/layout">
  4. <head>
  5. <title>Foosbaal Cadastro</title>
  6. <!--Import Google Icon Font-->
  7. <link href="https://fonts.googleapis.com/icon?family=Material+Icons"
  8.     rel="stylesheet" />
  9.  
  10. <!--Import materialize.css-->
  11. <link type="text/css" rel="stylesheet"
  12.     href="materialize/css/materialize.min.css" media="screen,projection" />
  13.  
  14. <!--Let browser know website is optimized for mobile-->
  15. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  16. </head>
  17. <body>
  18.  
  19.     <h1>Cadastro acantonamento:</h1>
  20.     <h3><a href="/alunos" class="waves-effect waves-light btn"><i
  21.         class="material-icons left">attach_file</i>Lista de Alunos</a></h3>
  22.     <form class="container" method="post">
  23.         <div class="row">
  24.             <div class="input-field col s6">
  25.             Nome:<input type="text" value="" name="nome"/> 
  26.             </div> 
  27.             <div class="input-field col s2">
  28.                Turma:<input type="text" value="" name="turma" />
  29.             </div>
  30.             <div class="input-field col s2">
  31.                 Sexo:<input type="text" value="" name="sexo" />
  32.             </div>
  33.             <div class="input-field col s4">
  34.                 Telefone:<input type="text" value="" name="telefone" />
  35.             </div>
  36.             <div class="input-field col s6">
  37.                 Email:<input type="text" value="" name="email" />
  38.             </div>
  39.             <div class="input-field col s3">
  40.                 Alergia:<input type="text" value="" name="alergia" />
  41.             </div>
  42.             <div class="input-field col s7">
  43.                 Medicação/Observações:<input type="text" value="" name="obs" />
  44.             </div>
  45.         </div>
  46.         <button class="btn waves-effect waves-light" type="submit"
  47.             name="action">Salvar</button>
  48.  
  49.     </form>
  50.     <script type="text/javascript"
  51.         src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
  52.     <script type="text/javascript" src="materialize/js/materialize.min.js"></script>
  53. </body>
  54.  
  55.  
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement