chore: eliminado codigo porteado a svelte p1
Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
@{
|
||||
ViewData["Title"] = "Info";
|
||||
}
|
||||
@{
|
||||
Layout = "_Layout";
|
||||
}
|
||||
|
||||
<h1>@ViewData["Title"]</h1>
|
||||
|
||||
<p>Este es un sistema hecho por Federico Polidoro Para las materias de Ing en sistemas y Trabajo de diploma.</p>
|
||||
@@ -1,36 +0,0 @@
|
||||
<h3>Alta Inquilino</h3>
|
||||
<form method="post" action="/api/inquilino ">
|
||||
<label for="Dni">Dni:</label><br>
|
||||
<input type="number" id="Dni" name="Dni" min="1" step="1" required>
|
||||
<br>
|
||||
|
||||
<label for="Cuil">Cuil:</label><br>
|
||||
<input type="number" id="Cuil" name="Cuil" min="1" step="1" required>
|
||||
<br>
|
||||
|
||||
<label for="nombre">Nombre:</label><br>
|
||||
<input type="text" id="nombre" name="nombre" required>
|
||||
<br>
|
||||
|
||||
<label for="apellido">Apellido:</label><br>
|
||||
<input type="text" id="Apellido" name="apellido" required>
|
||||
<br>
|
||||
|
||||
<label for="Domicilio">Domicilio:</label><br>
|
||||
<input type="text" id="Domicilio" name="Domicilio" required>
|
||||
<br>
|
||||
|
||||
<label for="Email">Email:</label><br>
|
||||
<input type="email" id="Email" name="Email" required>
|
||||
<br>
|
||||
|
||||
<label for="Contraseña">Contraseña:</label><br>
|
||||
<input type="text" id="Contraseña" name="Contraseña" required>
|
||||
<br>
|
||||
|
||||
<label for="Celular">Celular:</label><br>
|
||||
<input type="tel" id="Celular" name="Celular" required>
|
||||
<br>
|
||||
|
||||
<button type="submit">Agregar Inquilino</button>
|
||||
</form>
|
||||
@@ -1,5 +0,0 @@
|
||||
@model Entidades.Dto.LoginDto;
|
||||
|
||||
<div class="alert alert-danger" role="alert">
|
||||
"@Model"
|
||||
</div>
|
||||
@@ -1,27 +0,0 @@
|
||||
@{
|
||||
ViewData["Title"] = "Login";
|
||||
}
|
||||
@{
|
||||
Layout = "_basicLayout";
|
||||
}
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/css/_Login.css">
|
||||
<div id="logincard" class="card centered">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Ingresar al Sistema </h5>
|
||||
<form hx-post="/api/login" hx-target="#responce" hx-swap="innerHTML">
|
||||
<label for="Usuario">Usuario</label><br>
|
||||
<input type="text" id="Usuario" name="Usuario" required>
|
||||
<br>
|
||||
|
||||
<label for="Contrasena">Contraseña</label><br>
|
||||
<input type="password" id="Contrasena" name="Contrasena" required>
|
||||
<br>
|
||||
<button type="submit">Ingresar</button>
|
||||
</form>
|
||||
<br>
|
||||
|
||||
<div id="responce"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -1,48 +0,0 @@
|
||||
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
for details on configuring this project to bundle and minify static web assets. */
|
||||
|
||||
a.navbar-brand {
|
||||
white-space: normal;
|
||||
text-align: center;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0077cc;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
|
||||
color: #fff;
|
||||
background-color: #1b6ec2;
|
||||
border-color: #1861ac;
|
||||
}
|
||||
|
||||
.border-top {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
.border-bottom {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.box-shadow {
|
||||
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
||||
}
|
||||
|
||||
button.accept-policy {
|
||||
font-size: 1rem;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
line-height: 60px;
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<script src="https://unpkg.com/htmx.org@2.0.2"></script>
|
||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/AlquilaFacil.styles.css" asp-append-version="true" />
|
||||
</head>
|
||||
<body class="bg-dark-subtle">
|
||||
@RenderBody()
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,2 +0,0 @@
|
||||
@using AlquilaFacil
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
@@ -1 +0,0 @@
|
||||
|
||||
Reference in New Issue
Block a user