Erstellung Kundenseite und Loggedin flex panel sowie Überarbeitung Login Seiten Panel und Erstellung Masterlayout für KundenSeiten sowie Auslagerunger der CSS Dateien für navsidebar und Verlinkung der neuen Seiten mit der Hauptseite

This commit is contained in:
ja
2021-08-19 16:54:40 +02:00
parent e5158343ad
commit 999ba3f2dd
17 changed files with 9444 additions and 593 deletions

View File

@@ -4,7 +4,8 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<%@ import Namespace="MySql.Data.MySqlClient" %>
<%@ import Namespace="MySql.Data.MySqlClient"
%>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>VERAG Spedition AG Login</title>
@@ -74,20 +75,10 @@
{
window.history.back()
}
</script>
<script>
function bust1() {
if (top != self)
setInterval("top.location.replace('../Kundenseite.aspx')", 1);
}
function bust2() {
if (top != self)
setInterval("top.location.replace('../admin/admin.aspx')", 1);
}
</script>
</script>
</head>
<body onload="FocusOnInput()">
<body onload="FocusOnInput()">
<!-- #include file="../navigation.aspx" -->
<div class="container-fluid" style="width:252px;height:216px;">
<form id="form1" runat="server">
@@ -99,10 +90,10 @@
</tr>
<tr>
<td align="right">
<asp:Label ID="Label2" runat="server" AssociatedControlID="UserID" required>Kundennummer:</asp:Label>
<asp:Label ID="Label2" runat="server" AssociatedControlID="UserID" required>Kundennummer:</asp:Label>
</td>
<td>
<asp:TextBox ID="UserID" runat="server"></asp:TextBox>
<asp:TextBox ID="UserID" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="UserIDrequired" runat="server" ControlToValidate="UserID" ErrorMessage="Die Kundennummer ist erforderlich." ToolTip="Die Kundennummer ist erforderlich." ValidationGroup="Login1">*</asp:RequiredFieldValidator>
</td>
</tr>
@@ -148,6 +139,17 @@
</asp:Login>
</form>
</div>
<script>
function bust1() {
if (top != self)
top.location.replace('../Kunden/Kundenseite.aspx');
}
function bust2() {
if (top != self)
top.location.replace('../admin/admin.aspx');
}
</script>
</body>
</html>