Hi All,
It's possible to make the login dialog box in same size (username and password login box)?
event if i changed at this code <input type="<% prompt.type %>" name="<% prompt.name %>" size="30"> , the box still cannot in the same size.
Thanks
Try this in your custom sign-in page. Use a CSS style
<input type="text" name="username" id="username" style="width: 150px" maxlength="100" autocomplete="off"/>
<input type="password" name="password" id="password" style="width: 150px" maxlength="100" autocomplete="off"/>
Hi All,
After tested, only on Internet Explorer the login box size is different, but at another browsers are fine.