190 lines
11 KiB
Plaintext
190 lines
11 KiB
Plaintext
<%@ Page Language="VB" Debug="true" AutoEventWireup="false" CodeFile="login_FLEX.aspx.vb" Inherits="login_login_TEST"%>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<%@ import Namespace="MySql.Data.MySqlClient"%>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<title>VERAG Spedition AG Login</title>
|
|
<link rel="stylesheet" type="text/css" href="../css/main.css"/>
|
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/>
|
|
<LINK REL="SHORTCUT ICON" HREF="../images/Icons/favicon/favicon.ico" />
|
|
<!-- <link rel="stylesheet" type="text/css" href="css/edit_main.css"> -->
|
|
<script src="js/netzwerk.js" type="text/javascript"></script>
|
|
<link rel="stylesheet" type="text/css" href="../css/login/loginFLEX.css"/>
|
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/>
|
|
|
|
<script type="text/javascript">
|
|
function FocusOnInput() {
|
|
document.getElementById("UserID").focus();
|
|
}
|
|
</script>
|
|
<script type="text/javascript">
|
|
// Vergebe den Event-Handler
|
|
document.onkeydown = handleKeyEvent;
|
|
// Funktion, die den Event verarbeitet
|
|
function handleKeyEvent(e) {
|
|
// MSIE nimmt das Event-Objekt aus window.event, DOM-kompatible Browser aus dem e-Funktionsparameter
|
|
if (!e) e = window.event;
|
|
// keyCode muss 70 sein und ctrlKey true
|
|
if (e.keyCode == 68 && e.ctrlKey) {
|
|
alert('Strg+D wurde gedrückt');
|
|
//topup
|
|
}
|
|
}
|
|
</script>
|
|
<!-- <script type="text/javascript" src="../js/toptions/top_up-min.js"></script> -->
|
|
<!--[if IE]>
|
|
<link rel="stylesheet" type="text/css" href="../css/main.css">
|
|
<![endif]-->
|
|
|
|
<!--[if IE 6]>
|
|
<link rel="stylesheet" type="text/css" href="../css/main.css">
|
|
<![endif]-->
|
|
|
|
<!--[if lt IE 7]>
|
|
<link rel="stylesheet" type="text/css" href="../css/main.css">
|
|
<![endif]-->
|
|
|
|
<!--[if lte IE 5.5999]>
|
|
<link rel="stylesheet" type="text/css" href="../css/main.css">
|
|
<![endif]-->
|
|
|
|
<!--[if gte IE 5.5]>
|
|
<link rel="stylesheet" type="text/css" href="../css/main.css">
|
|
<![endif]-->
|
|
|
|
<script type = "text/javascript">
|
|
function goBack()
|
|
{
|
|
window.history.back()
|
|
}
|
|
</script>
|
|
</head>
|
|
<%Dim veragregex = New RegexSammlung_VERAG()
|
|
Dim regexUID As String = veragregex.getregUID()
|
|
Dim regexPWVal As String = veragregex.getregPassword()%>
|
|
<body onload="FocusOnInput()">
|
|
<div id="content_container">
|
|
<div class="container-fluid">
|
|
<form id="form1" runat="server">
|
|
<asp:Login ID = "Login1" runat = "server" OnAuthenticate= "ValidateUser" DestinationPageUrl="../Customers/CustomsAviso.aspx" >
|
|
<LayoutTemplate>
|
|
<center>
|
|
<table id="tbl_main" cellpadding="0">
|
|
<tr style="color:#003680; height:30px;font-size:12px">
|
|
<td align="center" style="color:#fff;font-kerning:auto;">
|
|
<asp:Label ID="lbl_login" runat="server" style="color:#003680; font-size:20px;font-weight:700;" Text="Login"></asp:Label>
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:46px;">
|
|
<td align="left" colspan="2">
|
|
<asp:Label ID="CustomerIDLabel" runat="server" AssociatedControlID="CustomerID" CssClass="txt_design">Kundennummer:</asp:Label>
|
|
</td>
|
|
<td align="left">
|
|
<asp:TextBox ID="CustomerID" runat="server" required="true" Width = "240" ValidationGroup="txt_checkUID"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:46px;">
|
|
<td align="left" colspan="2">
|
|
<asp:RequiredFieldValidator ID="CustomerIDrequired" runat="server" ControlToValidate="CustomerID" ToolTip="Die Kundennummer ist erforderlich." ValidationGroup="txt_checkUID">Die Kundennummer ist erforderlich.</asp:RequiredFieldValidator>
|
|
</td><td>
|
|
<asp:RegularExpressionValidator ID="valid_getNumberInput" ControlToValidate="CustomerID" ValidationGroup="txt_checkUID" runat="server" Display="Dynamic" SetFocusOnError="true" ValidationExpression="<%=regexUID %>"></asp:RegularExpressionValidator>
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:46px;">
|
|
<td align="left" colspan="2">
|
|
<asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName" CssClass="txt_design">Benutzername:</asp:Label>
|
|
</td>
|
|
<td align="left" colspan="2">
|
|
<asp:TextBox ID="UserName" runat="server" TextMode="SingleLine" Width = "240" ValidationGroup="txt_Username" required="true"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:23px;">
|
|
<td align="left" colspan="2">
|
|
<asp:RequiredFieldValidator ID="UserNamerequired" runat="server" ControlToValidate="UserName" ErrorMessage="Der Benutzername ist erforderlich." ToolTip="Der Benutzername ist erforderlich." ValidationGroup="txt_Username">Der Benutzername ist erforderlich.</asp:RequiredFieldValidator>
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:46px;">
|
|
<td align="left" colspan="2">
|
|
<asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password" CssClass="txt_design">Kennwort:</asp:Label>
|
|
</td>
|
|
<td align="left" colspan="2">
|
|
<asp:TextBox ID="Password" runat="server" TextMode="Password" required="true" Width = "240" ValidationGroup="chk_PWField" MaxLength="30"></asp:TextBox>
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:46px;">
|
|
<td align="left" colspan="2">
|
|
<asp:RequiredFieldValidator ID="Passwordrequired" runat="server" ControlToValidate="Password" ErrorMessage="Das Kennwort ist erforderlich." ToolTip="Das Kennwort ist erforderlich." ValidationGroup="chk_PWField">Bitte Passwort angeben.</asp:RequiredFieldValidator>
|
|
<asp:RegularExpressionValidator ID="checkpwdREGEX" ControlToValidate="Password" ValidationGroup="chk_PWField" runat="server" Display="Dynamic" SetFocusOnError="true" ValidationExpression="<%=regexPWVal %>"></asp:RegularExpressionValidator>
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:23px;">
|
|
<td align="left" colspan="2">
|
|
<asp:CheckBox ID="RememberMe" runat="server" Text="Anmeldedaten speichern." />
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:23px">
|
|
<td align="center" style="color:Red;" colspan="2">
|
|
<asp:Literal ID="FailureText" runat="server" EnableViewState="False"></asp:Literal>
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:23px;">
|
|
<td align="left" colspan="2">
|
|
<br/> <asp:Button ID="LoginButton" runat="server" CommandName="Login" Text="Login" ValidationGroup="Login1" target="_top" OnClientClick="bust2()"/>
|
|
</td>
|
|
|
|
<td align="right" colspan="2">
|
|
<asp:LinkButton ID="LinkButton1" runat="server" target="_top" OnClientClick="bust2()">Admin-Login</asp:LinkButton>
|
|
</td>
|
|
</tr>
|
|
<tr style="color:#003680; height:23px;">
|
|
<td align="left" colspan="4">
|
|
<%Dim url As String = Session.Keys.Item("urltochangepw") %>
|
|
<a ID="LinkButton2" runat="server" target="_top" href="ForgotPW.aspx?urlofchangepwpage=<%=url%>">Passwort Vergessen</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</center>
|
|
</LayoutTemplate>
|
|
</asp:Login>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
function bust2() {
|
|
if (top.location == self) {
|
|
var zipphone2_1 = getElementById("#CustomerID").val();
|
|
var zipphone2_2 = getElementById("#UserName").val();
|
|
var zipphone2_3 = getElementById("#Password").val();
|
|
alert("send:" + zipphone2_1)
|
|
alert("send:" + zipphone2_2)
|
|
alert("send:" + zipphone2_3)
|
|
//parent.location.replace('../Customers/Welcome.aspx');
|
|
top.location = '../Customers/Welcome.aspx';
|
|
}
|
|
}
|
|
</script>
|
|
<script type="text/javascript">
|
|
function bust1() {
|
|
if (top.location != self) {
|
|
var zipphone2_1 = getElementById("#CustomerID").val();
|
|
var zipphone2_2 = getElementById("#UserName").val();
|
|
var zipphone2_3 = getElementById("#Password").val();
|
|
alert("send:" + zipphone2_1)
|
|
alert("send:" + zipphone2_2)
|
|
alert("send:" + zipphone2_3)
|
|
parent.location.replace('../Customers/Welcome.aspx');
|
|
// top.location = '../newpageJulius_Sidebar.aspx';
|
|
}
|
|
}
|
|
</script>
|
|
<script type="text/javascript">
|
|
function reloadpage() {
|
|
window.parent.location.reload();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |