-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathregistro.php
More file actions
66 lines (61 loc) · 2.9 KB
/
Copy pathregistro.php
File metadata and controls
66 lines (61 loc) · 2.9 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php session_start(); ?>
<html>
<head>
<title>Registro Premium</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/bootstrap-icons/bootstrap-icons.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<?php include "php/navbar.php"; ?>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-7">
<div class="bento-card">
<div class="text-center mb-5">
<h2 class="fw-bold">Crea tu Cuenta</h2>
<p class="text-muted">Únete a nuestra plataforma en pocos pasos</p>
</div>
<form role="form" name="registro" action="php/registro.php" method="post">
<div class="row">
<div class="col-md-6 mb-4">
<label for="username" class="form-label small fw-bold">Usuario</label>
<input type="text" class="form-control border-light-subtle bg-light" id="username" name="username" placeholder="usuario123">
</div>
<div class="col-md-6 mb-4">
<label for="fullname" class="form-label small fw-bold">Nombre Completo</label>
<input type="text" class="form-control border-light-subtle bg-light" id="fullname" name="fullname" placeholder="Juan Pérez">
</div>
</div>
<div class="mb-4">
<label for="email" class="form-label small fw-bold">Correo Electrónico</label>
<input type="email" class="form-control border-light-subtle bg-light" id="email" name="email" placeholder="correo@ejemplo.com">
</div>
<div class="row">
<div class="col-md-6 mb-4">
<label for="password" class="form-label small fw-bold">Contraseña</label>
<input type="password" class="form-control border-light-subtle bg-light" id="password" name="password" placeholder="••••••••">
</div>
<div class="col-md-6 mb-4">
<label for="confirm_password" class="form-label small fw-bold">Confirmar</label>
<input type="password" class="form-control border-light-subtle bg-light" id="confirm_password" name="confirm_password" placeholder="••••••••">
</div>
</div>
<div class="d-grid mt-4">
<button type="submit" class="btn btn-bento btn-lg shadow-sm">Registrarse</button>
</div>
</form>
<div class="text-center mt-4">
<p class="small text-muted">¿Ya tienes cuenta? <a href="login.php" class="text-primary text-decoration-none fw-bold">Inicia sesión</a></p>
</div>
</div>
</div>
</div>
</div>
<script src="assets/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="js/valida_registro.js"></script>
</body>
</html>