forked from OPSI-srl/UManage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLauncher.ascx
21 lines (16 loc) · 853 Bytes
/
Launcher.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ Control CodeBehind="Launcher.ascx.cs" Inherits="OPSI.UManage.Pages.Launcher" %>
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.Client.ClientResourceManagement" Assembly="DotNetNuke.Web.Client" %>
<div class="app">
<div class="app-section">
<div id="panel_normal" runat="server">
<h5>Click here to launch the module</h5>
<asp:LinkButton cssClass="dnnPrimaryAction" runat="server" ID="lnk_launcher" onclick="lnk_launcher_click">
Launch the module
</asp:LinkButton>
</div>
<div id="panel_unregistereduser" runat="server" visible="false">
The module is not available to non authenticated users.
</div>
</div>
</div>
<dnn:DnnCssInclude ID="fum_icons_css" runat="server" FilePath="~/DesktopModules/UManage/app/bower_components/entypo/font/entypo.css" />