Placing the Login Form on Your Own Website

Each Web Meet Live Web Conference room comes with a customizable, hosted login page located at YourName.inetcommunicator.net.

We recommend (and support) only the login page that we provide.

However, alternate methods exist to initiate login from your own website:

Recommended:

1. Watch instruction video below.

 

2. Right Click Here and select "save target as" to download login pages and IFRAME code.

Alternative Methods:

Link to Standard Login Page

Place a simple hyperlink in any location on your website. The hyperlink to use is the Login Page link provided in the Home section of your Room Control Panel.

<a href=”http://YourName.inetcommunicator.net/”> Login Here</a>

Embed the inetcommunicator hosted login page on your website using an IFRAME tag.

The IFRAME HTML tag embeds one web page within another web page. This method is useful because, from the end user’s perspective, they never leave your website, and because it automatically incorporates changes to the inetcommunicator-provided login page:

<html> <head><title>My Login Page</title></head> <body topmargin=0 leftmargin=0> <iframe width=100% height=100% src=”http://YourName.inetcommunicatord.net/”> </iframe> </body> </html>

Create an HTML form on your website that posts the username and password to the Direct Launch link shown on the Home page of your Room Control Panel.

By coding an HTML form, you can include login to your room on any web page. The HTML form must post to the direct launch link provided in the Home section of your Room Control Panel.

Warning: This method does not verify that the user’s system meets the minimum requirements, and provides no assistance in case of problems.

<form method=post action=”http://YourName.inetcommunicator.net/launch.asp?room=XXXX”> Name: <input name=user type=text><br> Pass: <input name=pass type=password><br> <input type=submit value=”Login”> </form>

Direct Launch Hyperlink

By modifying the HTML on any of your web pages, you can place a simple login link in any location. The hyperlink to use is the Direct Launch link provided in the Home section of your Room Control Panel. Warning: This method does not verify that the user’s system meets the minimum requirements, and provides no assistance in case of problems.

<a href=”http://YourName.inetcommunicator.net/launch.asp?room=XXXX”> Login Here</a>