From 46f11a72ebcdfd825916011334b2260c998fe2f1 Mon Sep 17 00:00:00 2001 From: ja Date: Thu, 7 Oct 2021 11:26:11 +0200 Subject: [PATCH] =?UTF-8?q?=C3=84nderunge=20validierungen=20der=20login=20?= =?UTF-8?q?felder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/login/ForgotPW.css | 2 +- css/login/loginFLEX.css | 3 +++ login/ForgotPW.aspx | 24 ++++++++--------- login/login_FLEX.aspx | 58 +++++++++++++++++++++++++--------------- login/login_FLEX.aspx.vb | 7 +++++ 5 files changed, 58 insertions(+), 36 deletions(-) diff --git a/css/login/ForgotPW.css b/css/login/ForgotPW.css index 71978e6..662a7b2 100644 --- a/css/login/ForgotPW.css +++ b/css/login/ForgotPW.css @@ -24,7 +24,7 @@ } .container-fluid { width: 400px; - height: 379px; + height: 464px; background-color: rgba(255,255,255,0.5); margin: 0 auto; margin-top: 220px; diff --git a/css/login/loginFLEX.css b/css/login/loginFLEX.css index 8871efb..93c8224 100644 --- a/css/login/loginFLEX.css +++ b/css/login/loginFLEX.css @@ -54,4 +54,7 @@ color: #fff; width: 140px; height: 25px; +} +#Password{ + margin-right:-20px; } \ No newline at end of file diff --git a/login/ForgotPW.aspx b/login/ForgotPW.aspx index f602859..ddd4277 100644 --- a/login/ForgotPW.aspx +++ b/login/ForgotPW.aspx @@ -92,26 +92,24 @@ - - + + - - - + + - + - - - - - - - + + + + + + diff --git a/login/login_FLEX.aspx b/login/login_FLEX.aspx index d79742e..527180a 100644 --- a/login/login_FLEX.aspx +++ b/login/login_FLEX.aspx @@ -75,38 +75,52 @@ - + - - - Kundennummer: + + + Kundennummer: - - - * + + + + + + Die Kundennummer ist erforderlich. + + + + - - - Benutzername: - - + + + Benutzername: + + - * + + + + + Der Benutzername ist erforderlich. - - + + Kennwort: - - - - * + + + + + + + Bitte Passwort angeben. - + @@ -116,11 +130,11 @@ - +
- + Admin-Login diff --git a/login/login_FLEX.aspx.vb b/login/login_FLEX.aspx.vb index 2352153..25b6375 100644 --- a/login/login_FLEX.aspx.vb +++ b/login/login_FLEX.aspx.vb @@ -4,6 +4,9 @@ Imports System.Data Partial Class login_login_TEST Inherits System.Web.UI.Page Dim CustomerIDTextBox As TextBox + Protected Sub Page_Load(sender As Object, e As EventArgs) + + End Sub Protected Sub ValidateUser(sender As Object, e As EventArgs) Dim userId As Integer = 0 ' cDBFunctions.GetNewOpenConnection() @@ -58,4 +61,8 @@ Partial Class login_login_TEST Protected Sub LoginButton_Click(sender As Object, e As EventArgs) End Sub + + Protected Sub CustomerID_TextChanged(sender As Object, e As EventArgs) + + End Sub End Class