gradfica varie 4

This commit is contained in:
Marco Audiffredi 2024-07-19 08:55:38 +02:00
parent 6d757333af
commit f52bc427ce
2 changed files with 27 additions and 25 deletions

View File

@ -126,7 +126,6 @@ namespace SoftwayWeb.Controllers
}
public IActionResult EliminaDestinazione(string serial)
{
SessionHelper helper = new SessionHelper(this);

View File

@ -7,32 +7,35 @@
<!-- Basic Layout -->
<div class="row">
<div class="col-xl">
<div class="card mb-4">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="mb-0">Login</h5> <small class="text-muted float-end"></small>
</div>
<div class="card-body">
<form asp-action="Login">
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<div class="mb-3">
<label class="form-label" for="basic-default-fullname">Username</label>
<input asp-for="username" class="form-control" placeholder="" />
<span asp-validation-for="username" class="text-danger"></span>
</div>
<div class="mb-3">
<label class="form-label" for="basic-default-company">Password</label>
<input asp-for="password" class="form-control" placeholder="" />
<span asp-validation-for="password" class="text-danger"></span>
</div>
<button type="submit" class="btn btn-primary">Entra</button>
</form>
<div style="float:left;width:25%">&nbsp;</div>
<div style="float:left;width:50%;">
<div class="col-xl">
<div class="card mb-4">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="mb-0">Login</h5> <small class="text-muted float-end"></small>
</div>
<div class="card-body">
<form asp-action="Login">
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<div class="mb-3">
<label class="form-label" for="basic-default-fullname">Username</label>
<input asp-for="username" class="form-control" placeholder="" />
<span asp-validation-for="username" class="text-danger"></span>
</div>
<div class="mb-3">
<label class="form-label" for="basic-default-company">Password</label>
<input asp-for="password" class="form-control" placeholder="" />
<span asp-validation-for="password" class="text-danger"></span>
</div>
<button type="submit" class="btn btn-primary">Entra</button>
</form>
</div>
</div>
</div>
</div>
<div class="col-xl">
&nbsp;
</div>
</div>
<div style="float:left;width:25%">&nbsp;</div>
</div>