Guest User

Untitled

a guest
May 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <div class="administrador">
  2.  
  3. <h1 class="titulos">Cadastro de Administrador</h1>
  4.  
  5. <form class="administradorCadastra">
  6.  
  7. <label class="labelPequeno">Tipo</label><select id="tipo" name="tipo" required class="typeTextMedio">
  8. <option value="">Escolha o tipo</option>
  9. <option value="s">Super Administrador </option>
  10. <option value="c">Comum Administrador </option>
  11. </select><br /> <br />
  12. <label class="labelPequeno">Nome</label><input type="text" class="typeTextMedio" maxlength="200" id="nome" name="nome" required /> <br /> <br />
  13. <label class="labelPequeno">Login</label><input type="text" class="typeTextMedio" maxlength="<?php echo $constantes->getLenLogin(); ?>" id="login" name="login" required /> <br /> <br />
  14. <label class="labelPequeno">Senha</label><input type="password" class="typeTextMedio" maxlength="<?php echo $constantes->getLenSenha(); ?>" id="senha" name="senha" required /> <br /> <br />
  15.  
  16. <img class="spinner" src="../_img/_bannerImgs/spinner.gif" />
  17. <input type="submit" class="btnAcesso" value="Cadastrar Administrador" /><br /> <br />
  18.  
  19. <label class="resposta"></label>
  20.  
  21. </form>
  22.  
  23. </div>
Add Comment
Please, Sign In to add comment