Files
GPW/GPW_Admin/WebUserControls/cmp_footer.ascx
T
2021-11-09 12:38:48 +01:00

27 lines
1.3 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-left">
<asp:Label ID="lblDateTime" runat="server" Text="..." />
&nbsp;|&nbsp;<asp:Label ID="lblCodOperatore" runat="server" Text="-" />
</div>
<div class="col-6 text-right">
<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">
<ProgressTemplate>
<i class="fa fa-circle-o-notch fa-spin" 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>