42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
@page "/"
|
|
@namespace RegistroPersonalAN.Pages
|
|
@using RegistroPersonalAN.Components
|
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Registro Personal</title>
|
|
<base href="~/" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- CSS de Bootstrap -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" />
|
|
|
|
<!-- CSS de BlazorBootstrap -->
|
|
<link rel="stylesheet" href="_content/BlazorBootstrap/blazorbootstrap.min.css" />
|
|
|
|
<!-- Tus estilos personalizados -->
|
|
<link rel="stylesheet" href="css/app.css" />
|
|
<link rel="stylesheet" href="css/RegistroPersonalAN.styles.css" />
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
</head>
|
|
<body>
|
|
<app>
|
|
<component type="typeof(App)" render-mode="ServerPrerendered" />
|
|
</app>
|
|
|
|
|
|
<!-- Scripts de Bootstrap -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Scripts de BlazorBootstrap -->
|
|
<script src="_content/BlazorBootstrap/blazorbootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Script de Blazor Server -->
|
|
<script src="_framework/blazor.server.js"></script>
|
|
</body>
|
|
</html>
|