Can I create my own login page?
Yes, you can create your own login page which can be run from your own site. Below is a sample of a very simple login page. All you need to do is remove $$ACCOUNT_ID$$ and replace it with your own Account ID and change example.com for your own website.
<html>
<body>
<form method="post" action="https://admin. example .com/cgi-bin/login.cgi">
<table>
<tr>
<td>Member ID</td>
<td><input name="login_username"></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="login_password"></td>
</tr>
<tr>
<td><input type="submit" name="Login" value="Login"></td>
</tr>
</table>
<input type="hidden" name="language" value="EN">
<input type="hidden" name="host_account_id" value="$$ACCOUNT_ID$$">
</form>
</body>
</html>