27 lines
961 B
Plaintext
27 lines
961 B
Plaintext
@*
|
|
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
|
|
|
*@
|
|
@{
|
|
ViewData["Title"] = "Area riservata";
|
|
Layout = "~/Views/Shared/_LayoutAreaRis.cshtml";
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@ViewData["Title"] - SoftwayWeb</title>
|
|
<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="~/SoftwayWeb.styles.css" asp-append-version="true" />
|
|
</head>
|
|
<body>
|
|
@* <div class="col-lg-12 col-md-12 col-sm-12 col-12">
|
|
<input type="submit" value="Giri" class="agy-btn submitForm" />
|
|
<div class="response"></div>
|
|
</div> *@
|
|
|
|
<a href="@Url.Action("Index", "Giri")" title="Giri Consegna" class="links">Giri Consegna</a>
|
|
</body> |