| Posted by | Messages text |
|---|---|
![]() Total post : 3 Profile |
Written on : 31/08/2009 12:03 ( more than one month ) Object : Login Page in home page Hi, I have installed docebo in sub domain (link: http://student.sibylsys.com). Main domain will be our official website. I would like to place Docebo login page in our main websites right bar. Please kindly do let me know. |
Total post : 2688 Profile |
Written on : 31/08/2009 12:28 ( more than one month ) Object : Re: Login Page in home page You can simply send through "POST" all the login parameters, refer to the home page lms form and replicate it. CLaudio Docebo CEO and Founder www.docebo.com |
![]() Total post : 3 Profile |
Written on : 31/08/2009 12:52 ( more than one month ) Object : Re: Login Page in home page Thanks for your prompt reply. I have attached image below of our main website design. In that image there is a sample login page. I would like to replace it with student login. and as well please do let me know where is login form script located so i can copy it and past it to our main page which is under construction. ![]() |
Total post : 2688 Profile |
Written on : 31/08/2009 19:06 ( more than one month ) Object : Re: Login Page in home page It's in the source file under the tag "form" (you have to know html basics), also the URL have to be absolute and not relative Regards Docebo CEO and Founder www.docebo.com |
![]() Total post : 4 Profile |
Written on : 23/03/2010 18:06 ( more than one month ) Object : Re: Login Page in home page "To change this words please go on Admin/Language management, search for LMS/login and edit the key _INTRO_STD_TEXT" this is on the landing page, I am not sure where to find it. Can anyone be more specific? |
![]() Total post : 68 Profile |
Written on : 23/03/2010 19:56 ( more than one month ) Object : Re: Login Page in home page You have to be logged in as an admin, and go to the Admin Area , after that you have to follow the steps listed below: 1. Go to Main → Languages →Language Management → Select the language you want to modify ( I've selected English)
Once you have selected the language that you are using, you have to choose the opcion LMS, module login and edit the key _INTRO_STD_TEXT
Message modified by : halane on : 24/03/2010 19:25 |
![]() Total post : 25 Profile |
Written on : 21/04/2010 00:48 ( more than one month ) Object : Re: Login Page in home page Here is the code you need to create a log-in form. Make sure to change the "yoursitehere.com" to your website name. You may also need to change the code depending on where you have the docebo files stored. Also change the logo to match yours or delete it. If you need any other help, let me know. Terry. BEGIN CODE: <table border="2" align="center" cellpadding="10" cellspacing="0" style="width: 87%; height: 178px"> <tr> <td valign="top" class="style1"> <form action="http://www.yoursitenamehere.com/docebo_3603/doceboLms/index.php?modname=login&op=confirm" method="post"
name="login_confirm" class="std_form" id="login_confirm"> <div style="width: 175px; height: 325px"> <label for="login_userid"> <img src="logo.jpg" alt="Logo" width="175" height="75" />
</label> <div align="center" class="style23"><strong>Registered users</strong> </div>
<p align="center"> <span class="style24">Log in with your Elearning Username/Password</span><br /> </p> <p> <input class="textfield" type="text" id="login_userid" name="login_userid"
value="Username" maxlength="255" tabindex="1" style="width: 140px" /> <br /> <strong>Username</strong></p> <p>
<input name="login_pwd" type="password" class="textfield" id="login_pwd" style="width:
140px" tabindex="2" value="Password" maxlength="255" /> <strong>Password</strong></p> <p><br /> <input class="button" type="submit" id="login" name="log_button" value="Login"
tabindex="3" style="width: 140px" /> </p> <p align="center"><a
href="http://www.yourwebsite.com/docebo_3603/index.php?modname=login&op=register">Register now </a></p> </div> </form></td>
</tr> </table>
END CODE
Here is what it looks like:
Message modified by : frts on : 21/04/2010 00:48 www.frtrainingsolutions.com |