Codes for protected access-use on the Web
First, in the Centre of administration of the grant in the details of the service "codes for protected access:". And get the ID number for the protected access, without whom this service.
Now you can create a form by using the tag <FORM> .
The most important step is the correct filling in the parameters, just this tag, so, please pay close attention to. Tag <FORM> has two parameters- action and method . The parameter action will have the value "http://form.slovaknet.sk/script/access.asp?ID = xxxxxxxx ".
The first part (the part before the question mark) points to a script, which form
handles. The second part of the script passes the parameter. This parameter is
need to be completed for the specific indication. x The parameter ID make up a code that
you received in step 1). The parameter method must be set to post.
Example of a properly written tag <FORM>:
<FORM action="http://form.slovaknet.sk/script/access.asp?ID=12345678" method=post>
Then just add the tag to the form only < INPUT
type = text name = "Password" >, which creates a text field for entering the
the password. If you want to use instead of the text, change the asterisk parameter type to the value of the password.
Place the finished form to your site and try him.
Example of correctly manufactured form (figure for the ID dummy):
<FORM action="http://form.slovaknet.sk/script/access.asp?ID=12345678" method=post>
<INPUT type=text name="Password" />
<INPUT type="SUBMIT" NAME="SUBMIT" VALUE="Odeslat" />
<INPUT type="RESET" NAME="CLEAR" VALUE="Smazat" />
</FORM>