index.html 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link rel="preconnect" href="https://fonts.gstatic.com">
  7. <link href="https://fonts.googleapis.com/css2?family=Signika:wght@300&display=swap" rel="stylesheet">
  8. <link rel="stylesheet" href="style.css">
  9. <title>Bankline</title>
  10. <link href="crop_square.svg"rel="shortcut icon" type="image/x-icon">
  11. </head>
  12. <body>
  13. <header>
  14. <p> Banco Fontineli </p>
  15. </header>
  16. <div class="container">
  17. <h1 style="text-align: center;padding-top:15px;"> Formulário de cadastro </h1>
  18. <form>
  19. <table>
  20. <tr>
  21. <td colspan="3">
  22. <label for="name"><b>Nome</b></label>
  23. <input type="nome" placeholder="Digite seu nome" name="nome" class="required">
  24. </td>
  25. </tr>
  26. <tr>
  27. <td>
  28. <label for="cpf"><b>CPF</b> <span>inválido</span></label>
  29. <input onkeydown="cpfMask()"maxlength="14"type="text" placeholder="Digite seu cpf" id="cpf" class="required">
  30. </td>
  31. <td>
  32. <label for="rg"><b>RG</b></label>
  33. <input type="nome" placeholder="Digite seu RG" name="rg">
  34. </td>
  35. <td>
  36. <label for="sexo"><b>Sexo</b></label>
  37. <select id="sexo" class="w100">
  38. <option selected>Escolha seu sexo</option>
  39. <option value="feminino">Feminino</option>
  40. <option value="masculino">Masculino</option>
  41. <option value="outro">Outro</option>
  42. </select>
  43. </td>
  44. </tr>
  45. <tr>
  46. <td>
  47. <label for="cep"><b>CEP</b></label>
  48. <input type="text" placeholder="Digite seu CEP" name="cep" onblur="searchCep(this.value)">
  49. </td>
  50. <td>
  51. <label for="endereco"><b>Endereço</b></label>
  52. <input type="text" placeholder="Digite seu endereço" name="endereco" class="required" id="endereco">
  53. </td>
  54. <td>
  55. <label for="numero"><b>Número</b></label>
  56. <input type="text" placeholder="Digite o número" name="numero" class="required w100" >
  57. </td>
  58. </tr>
  59. <tr>
  60. <td>
  61. <label for="bairro"><b>Bairro</b></label>
  62. <input type="nome" placeholder="Digite seu bairro" name="bairro" id="bairro">
  63. </td>
  64. <td>
  65. <label for="cidade"><b>Cidade</b></label>
  66. <input type="nome" placeholder="Digite sua cidade" name="cidade" id="cidade">
  67. </td>
  68. <td>
  69. <label for="estado"><b>Estado</b></label>
  70. <input type="text" placeholder="Digite seu estado" name="estado" id="estado" class="w100">
  71. </td>
  72. </tr>
  73. <tr>
  74. <td>
  75. <label for="fixo"><b>Telefone fixo</b></label>
  76. <input type="text" placeholder="Digite o número do seu fixo" name="fixo">
  77. </td>
  78. <td>
  79. <label for="celular"><b>Telefone celular</b></label>
  80. <input onkeydown="phoneMask()"type="text" placeholder="Digite número do celular" maxlength="15" id="celular" class="required" >
  81. </td>
  82. <td>
  83. <button onclick="return validate()" type="submit" class="signupbtn">Cadastre-se</button>
  84. </td>
  85. </tr>
  86. </table>
  87. </form>
  88. </div>
  89. <footer>
  90. <p>Direitos reservados a Gabriel Fontineli</p>
  91. </footer>
  92. <script type="text/javascript" src="script.js"></script>
  93. </body>
  94. </html>