Looking for a script wandering if anyone has it?
Doing new design on site, wanting to put login on page for clients to login into their email on their site.
Any ideas?
Thx
I have one for Control panel login here just need one for webmail.
for cpanel. Tried to change 2082 to 2095 in script but would not work.
thx
&!doctype html public &-//w3c//dtd html 4.0 transitional//en&&
&html&
&head&
&title& CP Login &/title&
&style type=&text/css&&
.left_table { width: 150; }
.right_table { width: 150; }
.input_field { width: 150; border: 1px solid black; }
.login_but { width: 300; border: 1px solid black; }
.main_table { width: 300; border: 0; }
&/style&
&script type=&text/javascript&&
/*
+----------------------------------------------------------------------------+
| Cpanel Login |
| By Steve Miles aka Steve-PWH / SmileyMan |
| Copyright Proxima Web-Hosting 2002 All Rights Resevred |
| Free for use as long as header stays in place |
+----------------------------------------------------------------------------+
*/
function cp_go( the_form ) {
if ( !the_form.username.value || !the_form.password.value ) { return; }
location = 'http://'+the_form.username.value+':'+the_form.password.value+'@'+the_form.server[the_form.server.selectedIndex].value+':2082/';
}
&/script&
&/head&
&body&
&form name=&cplogin&&
&table class=&main_table& cellspacing=&0& cellpadding=&0&&
&tr&
&td class=&left_table&&
Select your server:
&/td&
&td class=&right_table&&
&select name=&server& class=&input_field&&
&option value=&server.domain.net&& Server 1&/option&
&option value=&server.domain.net&& Server 2 &/option&
&/select&
&/td&
&/tr&
&tr&
&td class=&left_table&&
Username:
&/td&
&td&
&input type=&text& class=&input_field& name=&username&&
&/td&
&/tr&
&tr&
&td class=&left_table&&
Password:
&/td&
&td&
&input type=&password& class=&input_field& name=&password&&
&/td&
&/tr&
&tr&
&td colspan=&2&&
&input type=&button& class=&login_but& Value=&Login& onclick=&cp_go(this.form)&&
&/td&
&/tr&
&/table&
&/form&
&/body&
&/html&
Doing new design on site, wanting to put login on page for clients to login into their email on their site.
Any ideas?
Thx
I have one for Control panel login here just need one for webmail.
for cpanel. Tried to change 2082 to 2095 in script but would not work.
thx
&!doctype html public &-//w3c//dtd html 4.0 transitional//en&&
&html&
&head&
&title& CP Login &/title&
&style type=&text/css&&
.left_table { width: 150; }
.right_table { width: 150; }
.input_field { width: 150; border: 1px solid black; }
.login_but { width: 300; border: 1px solid black; }
.main_table { width: 300; border: 0; }
&/style&
&script type=&text/javascript&&
/*
+----------------------------------------------------------------------------+
| Cpanel Login |
| By Steve Miles aka Steve-PWH / SmileyMan |
| Copyright Proxima Web-Hosting 2002 All Rights Resevred |
| Free for use as long as header stays in place |
+----------------------------------------------------------------------------+
*/
function cp_go( the_form ) {
if ( !the_form.username.value || !the_form.password.value ) { return; }
location = 'http://'+the_form.username.value+':'+the_form.password.value+'@'+the_form.server[the_form.server.selectedIndex].value+':2082/';
}
&/script&
&/head&
&body&
&form name=&cplogin&&
&table class=&main_table& cellspacing=&0& cellpadding=&0&&
&tr&
&td class=&left_table&&
Select your server:
&/td&
&td class=&right_table&&
&select name=&server& class=&input_field&&
&option value=&server.domain.net&& Server 1&/option&
&option value=&server.domain.net&& Server 2 &/option&
&/select&
&/td&
&/tr&
&tr&
&td class=&left_table&&
Username:
&/td&
&td&
&input type=&text& class=&input_field& name=&username&&
&/td&
&/tr&
&tr&
&td class=&left_table&&
Password:
&/td&
&td&
&input type=&password& class=&input_field& name=&password&&
&/td&
&/tr&
&tr&
&td colspan=&2&&
&input type=&button& class=&login_but& Value=&Login& onclick=&cp_go(this.form)&&
&/td&
&/tr&
&/table&
&/form&
&/body&
&/html&