Änderung Limegreen in Grün welches lesbarer ist.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -161,8 +161,9 @@
|
||||
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;
|
||||
}
|
||||
@@ -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>
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -185,31 +185,23 @@
|
||||
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-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-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;
|
||||
@@ -218,6 +210,16 @@
|
||||
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;
|
||||
margin-top:80px;
|
||||
|
||||
Reference in New Issue
Block a user