Änderungen design login pages
This commit is contained in:
@@ -41,22 +41,21 @@
|
||||
font-size: 1.725em;
|
||||
}
|
||||
.bg-email-icon {
|
||||
background: url("../../images/Icons/service/mail-icon.gif") no-repeat 1.75% 10px white;
|
||||
background: url("../../images/Icons/service/mail-icon.gif") no-repeat 1.75% 11px white;
|
||||
padding-left: 28px;
|
||||
padding-right: 50px;
|
||||
margin-left: -4px;
|
||||
width: 207px;
|
||||
height: 20px;
|
||||
padding-right: 50px;
|
||||
width: 227px;
|
||||
height: 28px;
|
||||
border: 1px gray solid;
|
||||
border-radius: 5px 5px 0px 0px;
|
||||
}
|
||||
|
||||
.bg-user-icon {
|
||||
background: url("../../images/Icons/service/username-icon-png-5.png") no-repeat 1.75% 10px white;
|
||||
background: url("../../images/Icons/service/username-icon-png-5.png") no-repeat 1.75% 11px white;
|
||||
padding-left: 28px;
|
||||
padding-right: 50px;
|
||||
width: 207px;
|
||||
height: 20px;
|
||||
width: 227px;
|
||||
height: 28px;
|
||||
border: 1px gray solid;
|
||||
border-radius: 5px 5px 0px 0px;
|
||||
}
|
||||
@@ -65,20 +64,20 @@
|
||||
background: url("../../images/Icons/service/key-icon-png-22_small.png") no-repeat 1.75% 10px white;
|
||||
padding-left: 28px;
|
||||
padding-right: 50px;
|
||||
width: 207px;
|
||||
height: 20px;
|
||||
width: 227px;
|
||||
height: 28px;
|
||||
border: 1px gray solid;
|
||||
border-radius: 5px 5px 0px 0px;
|
||||
margin-left: -4px;
|
||||
}
|
||||
|
||||
.bg-UID-icon {
|
||||
background: url("../../images/Icons/main/icon0-vector-493-01.png") no-repeat 1.75% 10px white;
|
||||
background: url("../../images/Icons/main/icon0-vector-493-01.png") no-repeat 1.75% 11px white;
|
||||
padding-left: 28px;
|
||||
padding-right: 50px;
|
||||
margin-left: -4px;
|
||||
width: 207px;
|
||||
height: 20px;
|
||||
height: 28px;
|
||||
border: 1px gray solid;
|
||||
border-radius: 5px 5px 0px 0px;
|
||||
}
|
||||
@@ -129,27 +128,27 @@
|
||||
</tr>
|
||||
<tr style="color:#003680; height:46px;">
|
||||
<td align="left">
|
||||
<asp:TextBox ID="CustomerID" CssClass="bg-UID-icon" runat="server" required="true" Width = "207" ValidationGroup="txt_checkUID" OnTextChanged="CustomerID_TextChanged" Text="User-ID / E-Mail" Font-Size="1.125em" style="margin-left:-4px;color:#003680" OnClick="this.value='';"></asp:TextBox>
|
||||
<asp:TextBox ID="CustomerID" CssClass="bg-UID-icon" runat="server" required="true" Width = "250" ValidationGroup="txt_checkUID" OnTextChanged="CustomerID_TextChanged" Text="User-ID / E-Mail" Font-Size="1.125em" style="margin-left:22px;color:#003680" OnClick="this.value='';"></asp:TextBox>
|
||||
<asp:RequiredFieldValidator ID="CustomerIDrequired" runat="server" ControlToValidate="CustomerID" SetFocusOnError="true" ValidationGroup="txt_checkUID" ErrorMessage="Die Kundennummer ist erforderlich"></asp:RequiredFieldValidator>
|
||||
<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:TextBox ID="UserName" runat="server" CssClass="bg-user-icon" TextMode="SingleLine" Width = "207" ValidationGroup="txt_Username" required="true" Font-Size="1.125em" style="margin-left:-4px;color:#003680" OnClick="this.value='';" Text="Username"></asp:TextBox>
|
||||
<asp:TextBox ID="UserName" runat="server" CssClass="bg-user-icon" TextMode="SingleLine" Width = "250" ValidationGroup="txt_Username" required="true" Font-Size="1.125em" style="margin-left:22px;color:#003680" OnClick="this.value='';" Text="Username"></asp:TextBox>
|
||||
<asp:RequiredFieldValidator ID="UserNamerequired" runat="server" ControlToValidate="UserName" ErrorMessage="Der Benutzername ist erforderlich." ToolTip="Der Benutzername ist erforderlich." ValidationGroup="txt_Username"></asp:RequiredFieldValidator>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="color:#003680; height:46px;">
|
||||
<td align="left" colspan="2">
|
||||
<asp:TextBox ID="Password" runat="server" CssClass="bg-key-icon" TextMode="Password" required="true" Width = "207" Font-Size="1.125em" ValidationGroup="chk_PWField" MaxLength="30" AutoCompleteType="Enabled" CausesValidation="true" style="margin-left:-4px;color:#003680" OnClick="this.value='';" Text="Kennwort"></asp:TextBox>
|
||||
<asp:TextBox ID="Password" runat="server" CssClass="bg-key-icon" TextMode="Password" required="true" Width = "250" Font-Size="1.125em" ValidationGroup="chk_PWField" MaxLength="30" AutoCompleteType="Enabled" CausesValidation="true" style="margin-left:22px;color:#003680" OnClick="this.value='';" Text="Kennwort"></asp:TextBox>
|
||||
<asp:RequiredFieldValidator ID="Passwordrequired" runat="server" ControlToValidate="Password" ErrorMessage="Bitte Passwort angeben" ToolTip="Das Kennwort ist erforderlich." ValidationGroup="chk_PWField"></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:Button ID="LoginButton" runat="server" CommandName="Login" Text="Login" ValidationGroup="Login1" target="_top" OnClientClick="bust2()" Width="97px" Font-Size="18px"/>
|
||||
<asp:Button ID="LoginButton" runat="server" CommandName="Login" Text="Login" ValidationGroup="Login1" target="_top" OnClientClick="bust2()" Width="330px" Font-Size="20px" style="margin-left:22px;"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="color:#003680; height:23px;">
|
||||
|
||||
Reference in New Issue
Block a user