To embed edit profile form directly to your website, you can create
a link from your member's area page to page on your website, and insert the following
code to this page to display edit profile form with preloaded values:
Please note, this is an example form which you have to edit to put your account username (marked in RED)
and add your own profile field names (optionaly, in this example field 'name' added marked in BLUE).
<!-- use page protection code with get_profile option to load members's profile fields in Javascript variables: -->
<script language="JavaScript" src="https://www.authpro.com/cgi-bin/auth.fcgi?user=YOURACCOUNT&action=pp&get_profile=1">
</script>
<!-- display edit profile form: -->
<font face="Arial">
<p><center><font size=+1 color="black">Update your information</font></center></p>
<form method="post" action="https://www.authpro.com/cgi-bin/auth.fcgi" name="pform">
<input type="hidden" name="action" value="edit3">
<input type="hidden" name="user" value="YOURACCOUNT">
<input type="hidden" name="uid">
<input type="hidden" name="pass">
<center><table>
<tr><td>Email:</td>
<td>
<input type="textbox" name="_email">
</td></tr>
<tr><td>Name:</td>
<td>
<input type="textbox" name="_name">
</td></tr>
<tr><td>Login:</td>
<td>
<input type="textbox" name="_login">
</td></tr>
<tr><td>Your password:</td>
<td>
<input type="password" name="_password">
</td></tr>
<tr><td>Verify password:</td>
<td>
<input type="password" name="_password2">
</td></tr>
<tr><td> </td>
<td><input type="submit" value="Submit"></td></tr>
</table></center>
</form>
</font>
<!-- load edit profile field values: -->
<script language="JavaScript">
var f=document.pform;
f.uid.value=uid;
f.pass.value=password;
f._email.value=email;
f._login.value=login;
f._password.value=password;
f._password2.value=password;
// fill in additional profile fields with verification to avoid javascript errors:
if (typeof(name)!='undefined') { f._name.value=name; }
</script>