Verbesserungen am Design

This commit is contained in:
ja
2021-08-17 14:08:32 +02:00
parent f3820caa5d
commit ba75eb6ec6
2 changed files with 54 additions and 19 deletions

View File

@@ -4,8 +4,7 @@
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<%@ import Namespace="MySql.Data.MySqlClient" %> <%@ import Namespace="MySql.Data.MySqlClient" %>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>VERAG Spedition AG Login</title> <title>VERAG Spedition AG Login</title>
@@ -13,8 +12,7 @@
<link rel="stylesheet" type="text/css" href="../css/style.css"/> <link rel="stylesheet" type="text/css" href="../css/style.css"/>
<LINK REL="SHORTCUT ICON" HREF="../images/Icons/favicon/favicon.ico" /> <LINK REL="SHORTCUT ICON" HREF="../images/Icons/favicon/favicon.ico" />
<!-- <link rel="stylesheet" type="text/css" href="css/edit_main.css"> --> <!-- <link rel="stylesheet" type="text/css" href="css/edit_main.css"> -->
<script src="js/netzwerk.js" type="text/javascript"></script> <script src="js/netzwerk.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="../../stylesheets/style.css"/> <link rel="stylesheet" type="text/css" href="../../stylesheets/style.css"/>
<link rel="stylesheet" type="text/css" href="../../stylesheets/example.css"/> <link rel="stylesheet" type="text/css" href="../../stylesheets/example.css"/>
@@ -23,6 +21,10 @@
background-color:#fff; background-color:#fff;
background-image:none; background-image:none;
} }
#Login1_LoginButton{
color:#fff;
background-color:#003680;
}
@media (min-width: 768px) { @media (min-width: 768px) {
} }
@@ -72,18 +74,28 @@
{ {
window.history.back() 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> </head>
<body onload="FocusOnInput()"> <body onload="FocusOnInput()">
<!-- #include file="../navigation.aspx" --> <!-- #include file="../navigation.aspx" -->
<div class="container-fluid" style="width:252px;height:216px;"> <div class="container-fluid" style="width:252px;height:216px;">
<form id="form1" runat="server"> <form id="form1" runat="server">
<asp:Login ID = "Login1" runat = "server" OnAuthenticate= "ValidateUser"> <asp:Login ID = "Login1" runat = "server" OnAuthenticate= "ValidateUser">
<LayoutTemplate> <LayoutTemplate>
<table cellpadding="0" style="font-family:Arial;font-size:11px;border:1px solid gray"> <table cellpadding="0" style="font-family:Arial;font-size:11px;border:1px solid gray">
<tr style="background-color:#003680;color:#fff;height:30px;font-size:12px"> <tr style=" background-image: linear-gradient(to right, #003680 , #0055cc);color:#fff;height:30px;font-size:12px">
<td align="center" colspan="2" style="color:#fff;">Bitte melden Sie sich an:</td> <td align="center" colspan="2" style="color:#fff;font-kerning:auto;font-weight:600;">Bitte melden Sie sich an:</td>
</tr> </tr>
<tr> <tr>
<td align="right"> <td align="right">
@@ -114,7 +126,7 @@
</tr> </tr>
<tr> <tr>
<td></td> <td></td>
<td > <td>
<asp:CheckBox ID="RememberMe" runat="server" Text="Anmeldedaten speichern." /> <asp:CheckBox ID="RememberMe" runat="server" Text="Anmeldedaten speichern." />
</td> </td>
</tr> </tr>
@@ -125,17 +137,17 @@
</tr> </tr>
<tr> <tr>
<td align="left" colspan="2"> <td align="left" colspan="2">
<br/> <asp:Button ID="LoginButton" runat="server" CommandName="Login" Text="Anmelden" ValidationGroup="Login1"/> <br/> <asp:Button ID="LoginButton" runat="server" CommandName="Login" Text="Anmelden" ValidationGroup="Login1" target="frame" OnClientClick="bust1()"/>
</td> </td>
<td align="middle" colspan="2"> <td align="middle" colspan="2">
<asp:LinkButton ID="LinkButton1" href="../login/login_TEST.aspx" runat="server">Admin-Login</asp:LinkButton> <asp:LinkButton ID="LinkButton1" href="../login/login_TEST.aspx" runat="server" target="_top" OnClientClick="bust2()">Admin-Login</asp:LinkButton>
</td></td> </td></td>
</tr> </tr>
</table> </table>
</LayoutTemplate> </LayoutTemplate>
</asp:Login> </asp:Login>
</form> </form>
</div> </div>
</body> </body>
</html> </html>

File diff suppressed because one or more lines are too long