-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (23 loc) · 927 Bytes
/
Copy pathindex.php
File metadata and controls
26 lines (23 loc) · 927 Bytes
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
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
?>
<?php include 'db.php'; ?>
<?php include 'navbar.php'; ?> <!-- Inclusión de la navbar -->
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CRUD DESARROLLO WEB</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container mt-5 d-flex justify-content-center align-items-center" style="height: 80vh;">
<img src="logo.png" alt="Intelafix Logo" class="img-fluid" style="max-width: 700px;">
</div>
</body>
</html>