Hello MarlysKA
Let's see if I can help you out.
Question 1
Client login to Member login.
Open up your mod_iluvlogin.php file.
Around line 98 you will see
| Code: |
<div class="member_switch">Client Login</div>
|
change Client Login to whatever you wish.
Question 2
User/Pass boxes. This one is a bit trickier.
In the same file a few lines down, around 106 you will find:
| Code: |
<div class="iluvlogin_pass">
<label for="mod_login_password"><?php echo _PASSWORD; ?></label>
<input type="password" id="mod_login_password" name="passwd" class="inputbox" size="10" alt="password" />
</div>
|
If you add value="username" the box will be filled.
<div class="iluvlogin_pass">
<label for="mod_login_password"><?php echo _PASSWORD; ?></label>
<input type="password" id="mod_login_password" name="passwd" value="username"class="inputbox" size="10" alt="password" />
</div>
Since that field is coded to be hidden, (i.e. when a user types their password it comes up dots instead of the actual password) it will just show the word password but in dots. This at least looks more like the typical login fields encountered at most sites.
I hope that help.