It's about the radio buttons at the login page.
By default it looks like this:
<li>
<asp:RadioButtonList runat="server" ID="rblNeworOld" AutoPostBack="true" CssClass="radio">
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_NewCustomers %>" Value="New" />
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_AlreadyHaveAccount %>" Value="Existing" />
</asp:RadioButtonList><asp:Literal ID="litMessage" runat="server" />
<br />
</li>
But I don't get the "New"-button. I need to modify the code like this by adding an extra new-button:
<li>
<asp:RadioButtonList runat="server" ID="rblNeworOld" AutoPostBack="true" CssClass="radio">
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_NewCustomers %>" Value="New" />
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_NewCustomers %>" Value="New" />
<asp:ListItem Text="<%$ Resources: Kartris, ContentText_AlreadyHaveAccount %>" Value="Existing" />
</asp:RadioButtonList><asp:Literal ID="litMessage" runat="server" />
<br />
</li>
Not an ideal solution.
Any ideas on where to modify code? CSS? VB? I've tried several places but this is the only way I don't get errors...