22 lines
579 B
Plaintext
22 lines
579 B
Plaintext
@using gehGassi.Permissions
|
|
@using gehGassi.Web.Auth
|
|
@using gehGassi.Web.Helper
|
|
@using Microsoft.AspNetCore.Mvc.Localization
|
|
@model dynamic;
|
|
@inject IViewLocalizer Localizer
|
|
@{
|
|
ViewData["Title"] = Localizer["Menu_Dashboard"];
|
|
}
|
|
@section pageTitle{
|
|
<a href="@Url.Action("IndexCustomer", "Home")">@Localizer["Menu_Dashboard"]</a>
|
|
}
|
|
|
|
<section id="dashboardContainer">
|
|
<div class="text-center mb-5">
|
|
<img src="/images/logo_dashboard.png" alt="gehGassi" />
|
|
</div>
|
|
<h4 class="text-center">@Localizer["Common_Welcome"] @User.CustomerName()</h4>
|
|
|
|
</section>
|
|
|