Änderung Limegreen in Grün welches lesbarer ist.

This commit is contained in:
ja
2021-11-19 10:56:47 +01:00
parent 330c3e6fb0
commit e2619c9c2e
4 changed files with 48 additions and 44 deletions

View File

@@ -89,24 +89,25 @@
}
.bg-email-icon {
background: url("../../images/Icons/service/mail-icon.gif") no-repeat 1.75% 11px white;
background: url("../../images/Icons/service/mail-icon.gif") no-repeat 1.75% 10px white;
padding-left: 28px;
padding-right: 50px;
margin-left: -4px;
width: 227px;
height: 28px;
height: 32px;
border: 1px gray solid;
border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 5px 5px;
margin-left: -4px;
}
.bg-user-icon {
background: url("../../images/Icons/service/username-icon-png-5.png") no-repeat 1.75% 11px white;
background: url("../../images/Icons/service/username-icon-png-5.png") no-repeat 1.75% 10px white;
padding-left: 28px;
padding-right: 50px;
width: 227px;
height: 28px;
height: 32px;
border: 1px gray solid;
border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 5px 5px;
margin-left: -4px;
}
.bg-key-icon {
@@ -114,21 +115,21 @@
padding-left: 28px;
padding-right: 50px;
width: 227px;
height: 28px;
height: 32px;
border: 1px gray solid;
border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 5px 5px;
margin-left: -4px;
}
.bg-UID-icon {
background: url("../../images/Icons/main/icon0-vector-493-01.png") no-repeat 1.75% 11px white;
background: url("../../images/Icons/main/icon0-vector-493-01.png") no-repeat 1.75% 10px white;
padding-left: 28px;
padding-right: 50px;
margin-left: -4px;
width: 227px;
height: 28px;
height: 32px;
border: 1px gray solid;
border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 5px 5px;
margin-left: -4px;
}
#CustomerID:invalid {
background-color: indianred;

View File

@@ -161,10 +161,11 @@
background: url("../../images/Icons/service/mail-icon.gif") no-repeat 1.75% 11px white;
padding-left: 28px;
padding-right: 50px;
width: 227px;
height: 32px;
margin-left: -4px;
width: 207px;
height: 38px;
border: 1px gray solid;
border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
.bg-user-icon {
background: url("../../images/Icons/service/username-icon-png-5.png") no-repeat 1.75% 11px white;
@@ -173,7 +174,7 @@
width: 227px;
height: 32px;
border: 1px gray solid;
border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
}
.bg-key-icon {
background: url("../../images/Icons/service/key-icon-png-22_small.png") no-repeat 1.75% 10px white;
@@ -334,7 +335,7 @@
</td></tr>
<tr style="color:#003680; height:38px;">
<td align="right" colspan="2">
<asp:Label ID="lblMessage" runat="server"/>
<asp:Label ID="lblMessage" runat="server" style="margin-left:30px"/>
<asp:RegularExpressionValidator ID="valid_getNumberInput" ControlToValidate="txt_CustomerID" style="font-size:17px" ForeColor="Red" ValidationGroup="val-desk" runat="server" Display="Dynamic" SetFocusOnError="false" ErrorMessage="The Customer-ID is not valid." ValidationExpression="[0-9]{1,10}"></asp:RegularExpressionValidator>
<asp:RegularExpressionValidator ID="check_UserName_regex" ErrorMessage="The Username don't meet the requirements. Try again." ControlToValidate="txt_Username" ValidationGroup="val-desk" runat="server" Display="Dynamic" SetFocusOnError="false" ForeColor="Red" ValidationExpression="([a-zA-Z1-9]{4,30})"></asp:RegularExpressionValidator>
<asp:RegularExpressionValidator ControlToValidate="txtEmail" runat="server" ID="regexval_txt_Email_2" ValidationGroup="val-desk" ValidationExpression="[\w\.]{0,2}\@[\w]+(?:\.[\w]{3}|\.[\w]{2}\.[\w]{2}|\.[\w]{2})\b" Display="Dynamic" ForeColor="Red" ErrorMessage="Die Zeichenfolge stimmt nicht mit den Kriterien einer E-Mail überein" SetFocusOnError="true"></asp:RegularExpressionValidator>

View File

@@ -65,13 +65,13 @@ Partial Class ForgotPW
regexval_txt_Email_2.Validate()
If regexval_txt_Email_2.IsValid = True Then
email = txtEmail.Text
lblMessage.ForeColor = Drawing.Color.Lime
lblMessage.ForeColor = Drawing.Color.Green
lblMessage.Text = "E-mail Adresse is valid.."
End If
Else
regexval_txt_Email.Validate()
If regexval_txt_Email.IsValid = True Then
lblMessage.ForeColor = Drawing.Color.Lime
lblMessage.ForeColor = Drawing.Color.Green
lblMessage.Text = "E-mail Address is correct."
email = txtEmail.Text
End If
@@ -307,13 +307,13 @@ Partial Class ForgotPW
regexval_2_txt_Email_M.Validate()
If regexval_2_txt_Email_M.IsValid = True Then
email = txtEmail_M.Text
lblMessage_M.ForeColor = Drawing.Color.Lime
lblMessage_M.ForeColor = Drawing.Color.Green
lblMessage_M.Text = "E-Mail Adresse ist validiert.."
End If
Else
regexval_txt_Email.Validate()
If regexval_2_txt_Email_M.IsValid = True Then
lblMessage_M.ForeColor = Drawing.Color.Lime
lblMessage_M.ForeColor = Drawing.Color.Green
lblMessage_M.Text = "E-Mail Adresse ist korrekt."
email = txtEmail_M.Text
End If
@@ -341,7 +341,7 @@ Partial Class ForgotPW
check_UserName_regex_M.ErrorMessage = VERAG_VARIABLES.geterrornumb + "Der Benutzername ist zu lang."
Else
username = txt_Username_M.Text
lblMessage_M.ForeColor = Drawing.Color.Lime
lblMessage_M.ForeColor = Drawing.Color.Green
lblMessage_M.Text = "Ein korrekter Benutzername ist eingegeben worden."
End If
End If

View File

@@ -183,33 +183,25 @@
.bg-email-icon {
background: url("../../images/Icons/service/mail-icon.gif") no-repeat 1.75% 11px white;
padding-left: 28px;
padding-right: 50px;
width: 227px;
height: 38px;
border: 1px gray solid;
border-radius: 5px 5px 5px 5px;
}
.bg-user-icon {
background: url("../../images/Icons/service/username-icon-png-5.png") no-repeat 1.75% 11px white;
padding-left: 28px;
padding-right: 50px;
width: 227px;
height: 38px;
border: 1px gray solid;
border-radius: 5px 5px 5px 5px;
}
.bg-key-icon {
background: url("../../images/Icons/service/key-icon-png-22_small.png") no-repeat 1.75% 10px white;
padding-left: 28px;
padding-right: 50px;
width: 227px;
height: 38px;
height: 32px;
border: 1px gray solid;
border-radius: 5px 5px 5px 5px;
margin-left: -4px;
}
.bg-UID-icon {
background: url("../../images/Icons/main/icon0-vector-493-01.png") no-repeat 1.75% 11px white;
.bg-user-icon {
background: url("../../images/Icons/service/username-icon-png-5.png") no-repeat 1.75% 11px white;
padding-left: 28px;
padding-right: 50px;
width: 227px;
height: 32px;
border: 1px gray solid;
border-radius: 5px 5px 5px 5px;
margin-left: -4px;
}
.bg-key-icon {
background: url("../../images/Icons/service/key-icon-png-22_small.png") no-repeat 1.75% 10px white;
padding-left: 28px;
padding-right: 50px;
margin-left: -4px;
@@ -217,6 +209,16 @@
height: 38px;
border: 1px gray solid;
border-radius: 5px 5px 5px 5px;
}
.bg-UID-icon {
background: url("../../images/Icons/main/icon0-vector-493-01.png") no-repeat 1.75% 11px white;
padding-left: 28px;
padding-right: 50px;
width: 227px;
height: 32px;
border: 1px gray solid;
border-radius: 5px 5px 5px 5px;
margin-left: -4px;
}
#Login1_btn_ForgotPW_M{
font-size:17px;