PDA

View Full Version : Creating a customized login page.



Juhanthus
April 16th, 2009, 12:42 AM
Hello.

I have just started learning PHP. I'm am wondering is it possible for me to create my own login page, in replacing the one at https://email.secureserver.net/login.php

The URL above is the login page provided by my email provider.

What I wanted to do is to create a login page of my own in my website that can enable me to login directly to the email account when I keyed in the username and password.

Just wondering is it possible to do so? I yes, I would be grateful if you can point me to where I can get more information in creating this login page.

Thank you!

simplistik
April 16th, 2009, 10:08 AM
don't think it can be done ...

you can try to create your own form or just duplicate their form onto your own server and style it however you want. instead of just doing:



<form id="login_form" name="login_form" method="post" action="login.php">


you'd do



<form id="login_form" name="login_form" method="post" action="https://email.secureserver.net/login.php">

Juhanthus
April 27th, 2009, 05:16 AM
thank a lot simplistik, I'll try work on it right away! :D