33 lines
1.3 KiB
Plaintext
33 lines
1.3 KiB
Plaintext
<div class="row bg-dark text-light px-2 small">
|
|
<div class="col-4 text-left text-nowrap pe-0">
|
|
<b>MP-TAB3 @(adesso.Year)</b> <span class="small" style="font-size:0.6rem;">v.@version</span>
|
|
</div>
|
|
<div class="col-4 d-flex flex-column justify-content-center">
|
|
@if (TypeScadLogin > 0)
|
|
{
|
|
@if (CurrExpVal < 0)
|
|
{
|
|
<div class="alert alert-danger text-center p-0">TIMER SCADUTO!</div>
|
|
}
|
|
else
|
|
{
|
|
if (MatrOper >= 0)
|
|
{
|
|
if (showProgrBar)
|
|
{
|
|
<ProgBar currVal="@CurrExpVal" maxVal="@MaxExpVal" singleLine="true" baseUM="m" yelLim="@yLimit" redLim="@rLimit"></ProgBar>
|
|
}
|
|
}
|
|
else
|
|
{
|
|
<div class="alert alert-info text-center p-0 mb-0">...login...</div>
|
|
}
|
|
}
|
|
}
|
|
</div>
|
|
<div class="col-4 text-end d-flex align-items-center justify-content-end">
|
|
<span class="small">@($"{adesso:HH:mm:ss}")</span> | <a class="text-light text-decoration-none" href="https://www.egalware.com/" target="_blank"><img class="img-fluid" width="16" src="images/LogoEgw.png" /> Egalware </a>
|
|
</div>
|
|
</div>
|
|
|