You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.0 KiB
57 lines
2.0 KiB
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Menu.ascx.cs" Inherits="QW2021C.Menu.Menu" %>
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<a runat="server" href="~/">Q-Wettkämpfe <%: DateTime.Now.Year %></a>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
.button {
|
|
background-color: #011745;
|
|
color: white;
|
|
padding: 7px 12px 7px 12px;
|
|
margin: 3px;
|
|
border-style: none;
|
|
font-size: 12px;
|
|
}
|
|
</style>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
|
|
<ej:Menu ID="Menu1" runat="server" Width="100%" CssClass="flat-saffron">
|
|
</ej:Menu>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<asp:HyperLink ID="btnhelp" Target="_blank" runat="server" Text="Hilfe" CssClass="btn btn-primary btn-sm" ForeColor="white" Style="position: relative; left: -20px" NavigateUrl="" />
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<asp:Panel ID="PanelLogin" runat="server" HorizontalAlign="Right">
|
|
<asp:TextBox ID="TxtUsername" runat="server" CssClass="e-textbox" Width="110px" placeholder="UserID"></asp:TextBox>
|
|
<asp:TextBox ID="txtpassword" runat="server" CssClass="e-textbox" Width="110px" placeholder="Passwort" TextMode="Password"></asp:TextBox>
|
|
|
|
<ej:Button ID="Button1" runat="server" Text="Anmelden" Size="Small" ShowRoundedCorner="true" EnableRTL="true" Type="Button" OnClick="Button1_Click">
|
|
</ej:Button>
|
|
</asp:Panel>
|
|
<asp:Panel ID="PanelLoggedin" runat="server" HorizontalAlign="Right">
|
|
Angemeldet als: <%:Session["UserName"].ToString()%>
|
|
<ej:Button ID="Button2" runat="server" Text="Abmelden" ShowRoundedCorner="true" EnableRTL="true" Type="Button" OnClick="Button2_Click">
|
|
</ej:Button>
|
|
</asp:Panel>
|
|
</div>
|
|
</div>
|
|
<hr />
|
|
|
|
<%--<ej:Dialog ID="firstdialog" Title="Dialog" Width="250" runat="server" ShowOnInit="false">
|
|
|
|
<DialogContent>
|
|
<p>This is a Dialog</p>
|
|
</DialogContent>
|
|
|
|
<Position XValue="20px" YValue="20px" />
|
|
|
|
</ej:Dialog>
|
|
|
|
</asp:content>--%>
|
|
|
|
|