-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro.php
33 lines (33 loc) · 1.33 KB
/
registro.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
29
30
31
32
33
<?php
require_once "./inc/config.php";
?>
<!DOCTYPE html>
<html lang="en">
<?php include_once 'inc/head.php'; ?>
<body>
<div class="container">
<div class="row d-flex justify-content-around mt-5">
<div class="card col-md-6 col-md-offset-6">
<article class="card-body">
<h4 class="card-title mb-4 mt-1 text-center">Registro</h4>
<form action="POST" class="form_registro">
<div class="form-group">
<label>Email</label>
<input type="email" class="form-control" placeholder="email" require>
</div>
<div class="form-group">
<label>Password</label>
<input type="password" class="form-control" placeholder="*******">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-block">Registrarse</buttom>
</div>
</form>
<div id="msg_error" class="alert alert-danger" role="alert" style="display: none"></div>
</article>
</div>
</div>
</div>
<?php include_once 'inc/footer.php'; ?>
</body>
</html>