|
See the following examples for building your site and
securing your web pages:
In the below script examples, substitute your Echodyne
Lite© account ID for ACCOUNTID.
Make sure you do not have any line breaks in your script
code lines (like the below code).
All code lines <script language.....></script>
must be on the same continuous line in your html code.
Check out a sample Echodyne
Lite© website
Download a sample Echodyne Lite© website
|
Add this code
to your secure/private pages
After you create an Echodyne Lite© account, substitute
ACCOUNTID in the below script with your Account ID.
|
|
<noscript>
<meta http-equiv="refresh" content="0;URL=nojavascript.htm">
</noscript>
<script language="javascript" src="http://www.echodyne.com/services/accessctrl/accessctrl.js?AccountID=ACCOUNTID"></script>
<HTML>
<HEAD>
<TITLE>Secure Content</TITLE>
</HEAD>
<BODY>
...
...
... This is your secure content
...
...
</BODY>
</HTML>
|
Create a Logon
page [top]
After you create an Echodyne Lite© account, substitute
ACCOUNTID in the below script with your Account ID.
|
<noscript>
<meta http-equiv="refresh" content="0;URL=nojavascript.htm">
</noscript>
<script language="javascript" src="http://www.echodyne.com/services/accessctrl/accessctrl.js?AccountID=ACCOUNTID"></script>
<HTML>
<HEAD>
<TITLE>Logon page</TITLE>
</HEAD>
<BODY>
...
...
<script language="javascript"
src="http://www.echodyne.com/services/accessctrl/logonform.js?tablewidth=170&tableborder=1&
tablebgcolor=f7f7f7&fontsize=1&fontface=Verdana&fontcolor=000000&fontheadercolor=0000FF&
msg=Echodyne Logon Services"></script>
...
...
</BODY>
</HTML>
|
| Create a logoff
page[top] |
<noscript>
<meta http-equiv="refresh" content="0;URL=nojavascript.htm">
</noscript>
<HTML>
<HEAD>
<TITLE>Logoff</TITLE>
</HEAD>
<BODY>
...
...
<script language="javascript"
src="http://www.echodyne.com/services/accessctrl/logoff.js?tablewidth=170&tableborder=1&
tablebgcolor=f7f7f7&fontsize=1&fontface=Verdana&fontcolor=000000&fontheadercolor=0000FF&
msg=You are Logged Off "></script>
...
...
</BODY>
</HTML>
|
| Create
a nojavascript.htm page (optional) [top]
|
|
<HTML>
<HEAD>
<TITLE>No JavaScript</TITLE>
</HEAD>
<BODY>
...
...
Please enable javascript or active scripting in your browser.
...
...
</BODY>
</HTML>
|