Difference between revisions of "Adding the SmartSimple Login to your Website"

From SmartWiki
Jump to: navigation, search
 
Line 1: Line 1:
 
{{Deprecated}}
 
{{Deprecated}}
 +
  
 
==Overview==
 
==Overview==
 +
These instructions explain how to embed the [[SmartSimple]] login process within your website.
  
These instructions explain how to embed the [[SmartSimple]] login process within your website.
+
* Connecting the [[SmartSimple]] login to your website makes it easier for people to remember where to go. It also increases the exposure of the company's website to people using [[SmartSimple]].
* Connecting the [[SmartSimple]] login to your website makes it easier for people to remember where to go. It also increases the exposure of the company's website to people using [[SmartSimple]].  
 
 
* Every organization using [[SmartSimple]] can log into the system using the standard login (i.e. '''alias.smartsimple.com''') entry point.
 
* Every organization using [[SmartSimple]] can log into the system using the standard login (i.e. '''alias.smartsimple.com''') entry point.
 
* [[Alias]] is the short form reference that you create in the company settings page.
 
* [[Alias]] is the short form reference that you create in the company settings page.
 +
 
  These instructions assume that you are familiar with HTML and have access  
 
  These instructions assume that you are familiar with HTML and have access  
 
  read/write to the web page on which you wish to enable this feature.
 
  read/write to the web page on which you wish to enable this feature.
Line 13: Line 15:
  
 
[[Image:Login1.png]][[Image:Login2.png]][[Image:Login3.png]][[Image:Login4.png]]
 
[[Image:Login1.png]][[Image:Login2.png]][[Image:Login3.png]][[Image:Login4.png]]
+
 
==Step by Step Instructions==  
+
==Step by Step Instructions==
  
 
1. Use your '''Web Page Editor''' to open the website page to which you wish to add the [[SmartSimple]] login.
 
1. Use your '''Web Page Editor''' to open the website page to which you wish to add the [[SmartSimple]] login.
  
 
2. Paste or type the following code into the required location on the page.
 
2. Paste or type the following code into the required location on the page.
<pre>
 
<form name="login" action="http://xxxx.smartsimple.com/exlogin.jsp" method="post">
 
      <input type="hidden" name="alias" value="xxxx">
 
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
 
        <tr>
 
          <td>Username:</td>   
 
          <td>
 
            <input type="text" name="user" size="10"
 
          </td>
 
        </tr>
 
        <tr>
 
          <td>Password:</td>   
 
          <td>
 
              <input type="text" name="password" size="10"
 
          </td>
 
        </tr>
 
        <tr>
 
          <td>&nbsp;</td>   
 
          <td>
 
            <input type="submit" name="Submit" value="Login">
 
          </td>
 
        </tr>
 
      </table>
 
</form>
 
</pre>
 
  
3. Replace '''xxxx''' with the company [[Alias]]  
+
<form action="http://xxxx.smartsimple.com/exlogin.jsp" method="post" name="login"><input name="alias" type="hidden" value="xxxx" />
 +
{| border="0" width="100%" cellspacing="0" cellpadding="0"
 +
|-
 +
||Username:
 +
||<input name="user" size="10" type="text" />
 +
|-
 +
||Password:
 +
||<input name="password" size="10" type="text" />
 +
|-
 +
||&nbsp;
 +
||<input name="Submit" type="submit" value="Login" />
 +
|}</form>
 +
 
 +
3. Replace '''xxxx''' with the company [[Alias]]
  
 
4. If you wish to use SSL replace http''':'''//alias.smartsimple.xxx with http'''s'''://alias.smartsimple.xxx
 
4. If you wish to use SSL replace http''':'''//alias.smartsimple.xxx with http'''s'''://alias.smartsimple.xxx
Line 56: Line 46:
  
 
==Returning to the Custom Login Page when Logging Out==
 
==Returning to the Custom Login Page when Logging Out==
 
 
When a user logs out of SmartSimple they are returned to the generic "Alias" login page – not a login page that you have established using the technique shown in this document.
 
When a user logs out of SmartSimple they are returned to the generic "Alias" login page – not a login page that you have established using the technique shown in this document.
  
 
Use the following technique to take a user back to your web site login page when they log out.
 
Use the following technique to take a user back to your web site login page when they log out.
  
You should not make this change until you are sure your login page is functioning correctly, otherwise you will not be able to log into [[SmartSimple]]. If this happens please contact [[How the SmartSimple Support Desk Works|SmartSimple Support]].
+
You should not make this change until you are sure your login page is functioning correctly, otherwise you will not be able to log into [[SmartSimple]]. If this happens please contact [[How the SmartSimple Support Desk Works|SmartSimple Support]].
  
 
7. Click the '''Configuration''', '''Global Settings''' link.
 
7. Click the '''Configuration''', '''Global Settings''' link.
Line 81: Line 70:
 
Note: you can redirect users to any page that you wish, not just the custom login page.
 
Note: you can redirect users to any page that you wish, not just the custom login page.
  
== Returning invalid login error message==
+
==Returning invalid login error message==
 
If you wish to return an invalid username or password error message to your login page you can place the
 
If you wish to return an invalid username or password error message to your login page you can place the
 
following script in the head portion of your login page.
 
following script in the head portion of your login page.
Line 87: Line 76:
 
You can change the “Invalid Username or Password.” message located in the showmsg function to
 
You can change the “Invalid Username or Password.” message located in the showmsg function to
 
whatever message you wish to display.
 
whatever message you wish to display.
 +
 
<pre>
 
<pre>
<script language=javascript>
+
<script language="javascript">// <![CDATA[
 
function _getrequestvar(name)
 
function _getrequestvar(name)
 
{ var url= location.href;
 
{ var url= location.href;
Line 105: Line 95:
 
return "";
 
return "";
 
}
 
}
</script> </pre>
+
// ]]></script>
 +
</pre>
  
 
Additionally you will need to place this second script within the area you wish the error message to be
 
Additionally you will need to place this second script within the area you wish the error message to be
 
printed.
 
printed.
 +
 
<pre>
 
<pre>
<script language="javascript">
+
<script language="javascript">// <![CDATA[
 
document.write(showmsg());
 
document.write(showmsg());
</script></pre>
+
// ]]></script>
 +
</pre>
  
 
Alternatively, if you are using a server page as your login page you can choose to use the parameter
 
Alternatively, if you are using a server page as your login page you can choose to use the parameter

Latest revision as of 14:45, 25 June 2019


Ambox warning pn.png This feature is deprecated and should no longer be used, but may still be available for reasons of backwards compatibility.


Overview

These instructions explain how to embed the SmartSimple login process within your website.

  • Connecting the SmartSimple login to your website makes it easier for people to remember where to go. It also increases the exposure of the company's website to people using SmartSimple.
  • Every organization using SmartSimple can log into the system using the standard login (i.e. alias.smartsimple.com) entry point.
  • Alias is the short form reference that you create in the company settings page.
These instructions assume that you are familiar with HTML and have access 
read/write to the web page on which you wish to enable this feature.

The following examples show how these login pages can look:

Login1.pngLogin2.pngLogin3.pngLogin4.png

Step by Step Instructions

1. Use your Web Page Editor to open the website page to which you wish to add the SmartSimple login.

2. Paste or type the following code into the required location on the page.

<form action="http://xxxx.smartsimple.com/exlogin.jsp" method="post" name="login"><input name="alias" type="hidden" value="xxxx" />

Username: <input name="user" size="10" type="text" />
Password: <input name="password" size="10" type="text" />
  <input name="Submit" type="submit" value="Login" />
</form>

3. Replace xxxx with the company Alias

4. If you wish to use SSL replace http://alias.smartsimple.xxx with https://alias.smartsimple.xxx

5. Save the page.

6. Add any additional formatting as required.

7. Test the page to ensure you can login successfully.

Returning to the Custom Login Page when Logging Out

When a user logs out of SmartSimple they are returned to the generic "Alias" login page – not a login page that you have established using the technique shown in this document.

Use the following technique to take a user back to your web site login page when they log out.

You should not make this change until you are sure your login page is functioning correctly, otherwise you will not be able to log into SmartSimple. If this happens please contact SmartSimple Support.

7. Click the Configuration, Global Settings link.

8. Go to Branding & Visual Settings section.

9. Click the "Source" button, select and delete all the content in the Login screen content text box.

10. Add the following variable.

@redirect=http://www.yourdomain.com/yourloginpage.html@

11. Replace the hyperlink reference (http://www.yourdomain.com/yourloginpage.html) with a reference to your custom login page.

12. Click the Save button.

Users now logging out from SmartSimple will be redirected to this page.

Note: you can redirect users to any page that you wish, not just the custom login page.

Returning invalid login error message

If you wish to return an invalid username or password error message to your login page you can place the following script in the head portion of your login page.

You can change the “Invalid Username or Password.” message located in the showmsg function to whatever message you wish to display.

<script language="javascript">// <![CDATA[
function _getrequestvar(name)
{ var url= location.href;
var hasQueryString = url.indexOf('?');
if (hasQueryString != -1)
return url.substring(hasQueryString+2+name.length ).replace(/%20/g,'
').replace(/\+/g,' ');
else
return "";
}
function showmsg()
{
if( _getrequestvar('errmsg').length>0)
return "Invalid Username or Password.";
else
return "";
}
// ]]></script>

Additionally you will need to place this second script within the area you wish the error message to be printed.

<script language="javascript">// <![CDATA[
document.write(showmsg());
// ]]></script>

Alternatively, if you are using a server page as your login page you can choose to use the parameter “errmsg=Invalid+User+Login.” which is passed back to your page in order to display the error message.

See Also