diff --git a/login/Change_PW.aspx b/login/Change_PW.aspx
index 9dafc16..b515112 100644
--- a/login/Change_PW.aspx
+++ b/login/Change_PW.aspx
@@ -221,7 +221,7 @@
|
-
+
|
@@ -232,24 +232,15 @@
-
- 1 Uppercase
-
-
- -
- 1 Downcase
-
+ 1 Upper- and 1 lowercase letter
+
-
and one special letter
-
- at an minimal length of 4 and an maximal
+ between 4 and 30 characters.
-
-
- -
- length of 30 characters.
-
-
+
@@ -318,27 +309,19 @@
-
+
-
- 1 Uppercase
-
-
+ 1 Upper- and 1 lowercase letter
+
-
- 1 Downcase
+ and one special letter
-
- and one special letter
-
- -
- at an minimal length of 4 and an maximal
+ between 4 and 30 characters.
-
-
- -
- length of 30 characters.
-
-
+
+
|
diff --git a/login/Change_PW.aspx.vb b/login/Change_PW.aspx.vb
index c457d88..f0c0fac 100644
--- a/login/Change_PW.aspx.vb
+++ b/login/Change_PW.aspx.vb
@@ -268,7 +268,7 @@ Partial Class login_Change_PW
' btn_submitpw.Enabled = True
Else
lbl_messagetext.ForeColor = Drawing.Color.Red
- lbl_messagetext.Text = "Passwörter stimmen nicht überein."
+ lbl_messagetext.Text = "Passwords do not match."
'btn_submitpw.Enabled = False
End If
End Sub
@@ -302,7 +302,7 @@ Partial Class login_Change_PW
'btn_submitpw_M.Enabled = True
Else
lbl_messagetext_M.ForeColor = Drawing.Color.Red
- lbl_messagetext_M.Text = "Passwörter stimmen nicht überein."
+ lbl_messagetext_M.Text = "Passwords do not match."
'btn_submitpw.Enabled = False
End If
End Sub
@@ -347,7 +347,7 @@ Partial Class login_Change_PW
tempstr = txt_Pw_M.Text
Else
lbl_messagetext_M.ForeColor = Drawing.Color.Red
- lbl_messagetext_M.Text = "Die gewählten Passwörter dürfen nicht dem alten entsprechen!"
+ lbl_messagetext_M.Text = "The chosen password should not be the old one!"
End If
End If
dr.Close()
@@ -381,7 +381,7 @@ Partial Class login_Change_PW
If String.Equals(usrname, VERAG_PROG_ALLGEMEIN.cCryptography2.Decrypt("Par2"), CompareMethod.Text) = True Then
cmd.ExecuteNonQuery()
regexval_txt_Pw_M.ForeColor = Drawing.Color.Green
- regexval_txt_Pw_M.Text = "Passwort wurde erfolgreich geändert!"
+ regexval_txt_Pw_M.Text = "Password has been changed sucessfully!"
End If
End Using
con.Close()
@@ -398,7 +398,8 @@ Partial Class login_Change_PW
ElseIf tempstr = "Error01" Then
regexval_txt_Pw_M.ForeColor = Drawing.Color.MediumVioletRed
VERAG_VARIABLES.seterrorcount(2)
- regexval_txt_Pw_M.Text = VERAG_VARIABLES.geterrornumb + "Passwort konnte nicht erfolgreich geändert werden!"
+ 'Button hierher
+ 'regexval_txt_Pw_M.Text = VERAG_VARIABLES.geterrornumb + "Passwort konnte nicht erfolgreich geändert werden!"
' Msg = "PW nicht erfolgreich geändert!"
' Style = vbAbortRetryIgnore + vbCritical + vbDefaultButton1
' Title = "Error"
|