Integrator Example Login Methods

Integrator Example Login Methods

 

Paste this code into a new HTML document. These examples should get you started on building your own navigation to RIT from an existing site. Working example: http://mpi.mpower-tech.com/samples.htm

 

 

 

<html><head><title>Login Examples</title></head><body>

 

<script language="javascript">

<!--

function BasicOpen() {

                ritwin=window.open('http://rit.taylor-tech.com/gisweb/web/default.cfm','RIT','width=800,height=600,scrollbars=yes,status=yes, resizable=yes, left=0,top=0');

                return false;

}

function AuthOpen(sUserName,sPassword) {

                ritwin=window.open('http://rit.taylor-tech.com/gisweb/web/customentry.cfm?txtUserName=' + sUserName + '&txtPassword=' + sPassword,'RIT','width=800,height=600,scrollbars=yes,status=yes, resizable=yes, left=0,top=0');

}

// -->

</script>

 

Main Page Content FAQ Page Anything You Want...<BR><BR>

 

Link Example:<BR>

<a href="" OnClick="BasicOpen(); return false;">RIT LOGIN</a>

 

<BR><BR>

Button Example:<BR>

<INPUT TYPE="button" VALUE="Rapid Integration Toolkit" OnClick="Javascript: BasicOpen();">

 

 

<BR><BR>

Button Example w/AutoLogin:<BR>

<INPUT TYPE="button" VALUE="Rapid Integration Toolkit" OnClick="Javascript: AuthOpen('guest','guest');">

 

</body></html>