Advertisement
MizunoBrasil

Form_cadastrar

Jun 9th, 2022
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
  8.     <title>Formulário de Cadastro</title>
  9. </head>
  10. <body>
  11. <div class="container">
  12. <br><br>
  13.     <h3>Formulário de Cadastro</h3>
  14.  
  15.         <form action="proc_cadastrar.php" method="POST" style="margin-top: 20px;">
  16.  
  17.  
  18.                 <div class="form-group">
  19.                     <label>Assunto</label>
  20.                     <input type="text" class="form-control" name="assunto" required autocomplete="off">
  21.                 </div>  
  22.                 <br>
  23.                 <div class="form-group">
  24.                     <label>Titulo</label>
  25.                     <input type="text" class="form-control" name="titulo" required autocomplete="off">
  26.                 </div>  
  27.                 <br>
  28.                 <div class="form-group">
  29.                     <label>Slug</label>
  30.                     <input type="text" class="form-control" name="slug" required autocomplete="off">
  31.                 </div>  
  32.                 <br>
  33.                 <div class="form-group">
  34.                     <label>Notícia</label>
  35.                     <textarea name="noticia" class="form-control" id="textarea">asasasas</textarea>
  36.                 </div>  
  37.                 <button type="submit" class="btn btn-primary">Cadastrar</button> <a class="btn btn-secondary" href="inicio" role="button">Voltar ao início</a> <a class="btn btn-danger" href="upload_htaccess.php">Upload do .htacess</a>
  38.         </form>
  39.     </div>    
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement