Login System wurde eingebaut. Dazu wurden das neue Icon erstellt und eingebunden

This commit is contained in:
ja
2021-08-27 16:10:54 +02:00
parent 5fcaf2e580
commit 7507d9ed4e
8 changed files with 134 additions and 30 deletions

View File

@@ -85,6 +85,10 @@
if (top != self)
setInterval("top.location.replace('../admin/admin.aspx')", 1);
}
function bust3() {
if (top != self)
setInterval("top.location.replace('../login/LogOut.aspx')", 1);
}
</script>
<link rel="stylesheet" type="text/css" href="../css/login/LoggedIn.css"/>
</head>
@@ -121,27 +125,14 @@
<asp:LoginName ID="LoginName1" runat="server" />
</td></tr>
</tr>
<tr>
<td align="right">
<asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName" required>Benutzername:</asp:Label>
</td>
<td>
<asp:TextBox ID="UserName" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="UserNameRequired" runat="server" ControlToValidate="UserName" ErrorMessage="Der Benutzername ist erforderlich." ToolTip="Der Benutzername ist erforderlich." ValidationGroup="Login1">*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td align="right">
<asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password">Kennwort:</asp:Label>
</td>
<td>
<asp:TextBox ID="Password" runat="server" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password" ErrorMessage="Das Kennwort ist erforderlich." ToolTip="Das Kennwort ist erforderlich." ValidationGroup="Login1">*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<div style="height:10px;"></div>
</td>
</tr>
<tr>
<td align="left" colspan="2">
<br/> <asp:Button ID="LogoutButton" runat="server" CommandName="Logout" Text="Abmelden" ValidationGroup="Logout" target="frame" OnClientClick="bust1()"/>
<br/> <asp:Button ID="LogoutButton" runat="server" CommandName="Logout" Text="Abmelden" ValidationGroup="Logout" target="frame" OnClientClick="bust3()"/>
</td>
</tr>