6355f1eaca
- fix yaml - fix conf appsettings.json + production - global refresh
25 lines
766 B
Plaintext
25 lines
766 B
Plaintext
@using MP.Prog.Components
|
|
@using System.Security.Claims
|
|
@*@using Microsoft.AspNetCore.Components.Authorization*@
|
|
@using MP.Prog.Data
|
|
|
|
@inject MessageService AppMessages
|
|
@*@inject AuthenticationStateProvider AuthenticationStateProvider*@
|
|
|
|
<div class="form-row pt-3">
|
|
<div class="col-7 col-md-6 col-lg-4 col-xl-3">
|
|
@*<LoginDisplay></LoginDisplay>*@
|
|
@*<i class="fas fa-user-alt"></i> <b>@userName</b>*@
|
|
</div>
|
|
<div class="col-12 col-lg-4 col-xl-6 d-none d-lg-block text-center h4 text-truncate">
|
|
<span class="@PageIcon" aria-hidden="true"></span> @PageName
|
|
</div>
|
|
<div class="col-5 col-md-6 col-lg-4 col-xl-3 text-right">
|
|
@if (ShowSearch)
|
|
{
|
|
<SearchMod></SearchMod>
|
|
}
|
|
</div>
|
|
</div>
|
|
|