29 lines
1.6 KiB
Plaintext
29 lines
1.6 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_footer.ascx.cs" Inherits="GPW_Admin.WebUserControls.cmp_footer" %>
|
|
<footer class="fixed-bottom bg-dark text-light textCondens px-2">
|
|
<div class="row" runat="server" id="divFooter">
|
|
<div class="col-6 text-start">
|
|
<asp:Label ID="lblDateTime" runat="server" Text="..." />
|
|
| <asp:Label ID="lblCodOperatore" runat="server" Text="-" />
|
|
</div>
|
|
<div class="col-6 text-end">
|
|
<div class="d-flex flex-row-reverse">
|
|
<div class="px-2">
|
|
<asp:Label runat="server" ID="lblCheckLic">Attenzione: problema di licenza, MR mode attivo! <i class="fa fa-exclamation-triangle" aria-hidden="true"></i></asp:Label>
|
|
<asp:Label runat="server" ID="lblApp" Text="." />
|
|
</div>
|
|
<div class="px-2">
|
|
<asp:UpdateProgress ID="UpdateProgressDisplay" runat="server" DisplayAfter="1" DynamicLayout="true">
|
|
<ProgressTemplate>
|
|
<i class="fa fa-circle-o-notch fa-spin text-secondary" aria-hidden="true"></i>
|
|
<i class="fa fa-circle-o-notch fa-spin text-light" aria-hidden="true"></i>
|
|
<i class="fa fa-circle-o-notch fa-spin text-warning" aria-hidden="true"></i>
|
|
</ProgressTemplate>
|
|
</asp:UpdateProgress>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<asp:Timer ID="Timer1" runat="server" Interval="10000" OnTick="Timer1_Tick">
|
|
</asp:Timer>
|
|
</footer>
|