-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastrar_usuarios.php
28 lines (26 loc) · 1.29 KB
/
cadastrar_usuarios.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<?php include_once 'menu.php';?>
<div class="container mt-3">
<div class="row"> <div class="col-4"> </div>
<div class="col-4">
<form action="insertUsuarios.php" method="post">
<label for="" class="form-label">Usuario</label>
<input type="text" name="usuario" id="" class="form-control">
<label for="" class="form-label">Senha</label>
<input type="text" name="senha" id="" class="form-control">
<input type="submit" value="Enviar" class="mt-3 btn btn-success">
</form></div>
<div class="col-4"></div></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</body>
</html>