-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.php
More file actions
75 lines (68 loc) · 2.57 KB
/
Copy pathindex.php
File metadata and controls
75 lines (68 loc) · 2.57 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
67
68
69
70
71
72
73
74
75
<?php
session_start();
?>
<html>
<head>
<title>.: RLPHP :.</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 g-4">
<!-- Hero Bento Item -->
<div class="col-lg-8">
<div class="bento-card bg-light-gray d-flex flex-column justify-content-center">
<h1 class="hero-title mb-4">RL-PHP <span class="text-primary">Framework</span></h1>
<p class="lead mb-4 text-muted">Sistema de Registro y Login sencillo, robusto y altamente adaptable. Empeza tu próximo proyecto sobre una base sólida.</p>
<div class="d-flex gap-3">
<a href="registro.php" class="btn btn-bento">Registrarse</a>
<a href="login.php" class="btn btn-outline-dark rounded-pill px-4">Entrar</a>
</div>
</div>
</div>
<!-- Stats/Small Bento Item -->
<div class="col-lg-4">
<div class="bento-card text-center">
<i class="bi bi-people-fill display-4 text-primary mb-3"></i>
<h3>+1000</h3>
<p class="text-muted">Usuarios activos confían en nuestra plataforma.</p>
</div>
</div>
<!-- Feature 1 -->
<div class="col-lg-4">
<div class="bento-card">
<i class="bi bi-shield-check feature-icon"></i>
<h4>Seguridad</h4>
<p class="text-muted small">Protección de datos y sesiones seguras por defecto.</p>
</div>
</div>
<!-- Feature 2 -->
<div class="col-lg-4">
<div class="bento-card">
<i class="bi bi-lightning-charge feature-icon"></i>
<h4>Rendimiento</h4>
<p class="text-muted small">Carga instantánea y arquitectura ligera.</p>
</div>
</div>
<!-- Feature 3 -->
<div class="col-lg-4">
<div class="bento-card">
<i class="bi bi-code-square feature-icon"></i>
<h4>Open Source</h4>
<p class="text-muted small">Código abierto, fácil de auditar y personalizar.</p>
</div>
</div>
</div>
</div>
<footer class="text-center">
© 2026 RLPHP - Simple, Clean, Bento.
</footer>
<script src="assets/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>