Web Hosting | Hosting News Blog

« Create Remote login page for DirectAdmin | Home | Ruby on rail Installation on Ubuntu »

Create Remote login page for cPanel

By bob | July 22, 2008

To create remote login page for cPanel, your website should have HTML codes.  Assuming your website has HTML code, your website url is www.yourwebsite.com then your cPanel login url will be http://www.yourwebsite.com:2082 for non-SSL or https://www.yourwebsite:2083 for SSL login.

You need to put the following HTML from in your website HTML codes.

<form action=’http://www.yourwebsite.com:2082/login/’ method=’post’>
<table border=’1′ width=’250′ cellpadding=’2′ cellspacing=’0′>
<tr>
<td align=’right’>Username:</td>
<td><input type=’text’ name=’user’></td>
</tr>
<tr>
<td align=’right’>Password:</td>
<td><input type=’password’ name=’pass’></td>
</tr>
<tr>
<td colspan=’2′ align=’center’><input type=’reset’ name=’r1′ value=’Reset’><input type=’submit’ name=’s1′ value=’Login’></td>
</tr>
</table>
</form>

In the code, you should replace “www.yourwebsite.com” with your website domain name.
If you want to use SSL login, you should replace “http” with “https” and “2082″ with “2083″.
Replace “Username:” and “Password:” with your own phrase if you like to translate it or such.
Replace “Login” and “Reset” with your own phrase if you like to translate it or such.

Now you can put  put this code in your website.

Topics: Hosting Tutorials, cpanel hosting |

Comments