NATS For Networks Affiliate Remote Login
You can create a custom form for affiliates to log in to your NATS For Networks installation. All that is needed is to create a form that submits to the following url:
http://<tracking domain>/internal.php
You would replace <tracking domain> with the Tracking Domain of your NATS For Networks install. The only variables that need to be sent for a successful login with the post are "user" and "pass". If the user is submitting and fails to enter the correct login information, and they are posting from the tracking domain of your NATS For Networks install, they will be redirected to the external login page of your NATS For Networks install. Otherwise they will receive an error response regarding why their login was unsuccessful.
Here is a basic example of what this form may look like.
<!-- Simple form to post to NATS For Networks and login --> <form action="http://example.natsfornetworks.com/internal.php" method="post"> Username: <input type="text" name="user" /><br /> Password: <input type="password" name="pass" /><br /> <input type="submit" /> </form>