Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
- <title>Formulário de Cadastro</title>
- </head>
- <body>
- <div class="container">
- <br><br>
- <h3>Formulário de Cadastro</h3>
- <form action="proc_cadastrar.php" method="POST" style="margin-top: 20px;">
- <div class="form-group">
- <label>Assunto</label>
- <input type="text" class="form-control" name="assunto" required autocomplete="off">
- </div>
- <br>
- <div class="form-group">
- <label>Titulo</label>
- <input type="text" class="form-control" name="titulo" required autocomplete="off">
- </div>
- <br>
- <div class="form-group">
- <label>Slug</label>
- <input type="text" class="form-control" name="slug" required autocomplete="off">
- </div>
- <br>
- <div class="form-group">
- <label>Notícia</label>
- <textarea name="noticia" class="form-control" id="textarea">asasasas</textarea>
- </div>
- <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>
- </form>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement