Diz
|
| Posted: 06/18/2002, 2:13 PM |
|
Is it possible, without editing the html after generating the login page, to change the end-user login box to another name than Login still using Codecharge? I don't need to change the variable name, login is fine, but the display field name.
This is the present code;
<tr><td style="background-color: #6691BC; padding: 0"><font style="font-size: 9pt; color: #ffffff">Login</font></td><td style="background-color:#ffffff;padding:2;border-top : 1px solid"><input type="text" name="Login" value="<?=tohtml(get_param("Login"))?>" maxlength="50"></td></tr>
I'd like to change it to;
<tr><td style="background-color: #6691BC; padding: 0"><font style="font-size: 9pt; color: #ffffff">User Name</font></td><td style="background-color:#ffffff;padding:2;border-top : 1px solid"><input type="text" name="Login" value="<?=tohtml(get_param("Login"))?>" maxlength="50"></td></tr>
eg
Login :
Password :
to
User Name :
password :
|
|
|
 |
Efren Lugo
|
| Posted: 06/18/2002, 4:34 PM |
|
I think if you are using codecharge2.0 you can do this by renaming "CAPTION" on Form...
If you are using CCS1.0 you may want to make the change on PROPERTIES>CAPTION
|
|
|
 |
Nicole
|
| Posted: 06/20/2002, 10:42 PM |
|
Diz,
CC (in mean CC not CCStudio) Login form is quite strict. In template version you should edit .html file, whereas in templateless one create login form Custom Show event and edit html code there.
|
|
|
 |
|