matrixsc
Junior Member
Posts: 31
Joined: Mar 2009
Reputation: 0
MyBux: 14
|
How to create a new login page
I'm hoping to create a page with just a login box and nothing else.
So this is the place where you login to the board or register for the board.
Like this below
Can anyone give me any ideas how i can do this please?
Thanks .
|
|
| 04-05-2009 02:56 AM |
|
Dalton
Tuts Team Lead
Posts: 1,059
Joined: Aug 2008
Reputation: 3
MyBux: 226
|
RE: How to create a new login page
|
|
| 04-05-2009 04:29 AM |
|
matrixsc
Junior Member
Posts: 31
Joined: Mar 2009
Reputation: 0
MyBux: 14
|
RE: How to create a new login page
Yeah like that but with noting else on there other than that login box.
How do i go about doing this please?
|
|
| 04-05-2009 08:28 AM |
|
Dalton
Tuts Team Lead
Posts: 1,059
Joined: Aug 2008
Reputation: 3
MyBux: 226
|
RE: How to create a new login page
So just a logon box. Nothing else?
Edit: I'm sorry, I can't help. I've tried and failed.
|
|
| 04-05-2009 09:21 AM |
|
Nickman
Manager
Posts: 1,572
Joined: May 2008
Reputation: 32
MyBux: 310
|
RE: How to create a new login page
Ok, let's see what we can do...
Try
Code:
<form action="member.php" method="post">
Username: <input type="text" class="textbox" name="username" size="25" maxlength="30" style="width: 200px;" value="" />
Password: <input type="password" class="textbox" name="password" size="25" style="width: 200px;" value="" />
<input type="submit" class="button" name="submit" value="Login" />
<input type="hidden" name="action" value="do_login" />
<input type="hidden" name="url" value="THIS IS THE CURRENT URL, WILL BE USED TO GO BACK AFTER LOGGING IN" />
</form>
Playstation Forums | Small URLs | Hoodrat Arcade | Tech news at a glance | BestVidz.net | Download'en
|
|
| 04-05-2009 02:45 PM |
|
matrixsc
Junior Member
Posts: 31
Joined: Mar 2009
Reputation: 0
MyBux: 14
|
RE: How to create a new login page
(04-05-2009 09:21 AM)Dalton Wrote: So just a logon box. Nothing else?
Edit: I'm sorry, I can't help. I've tried and failed.
Thanks anyway :)
(04-05-2009 02:45 PM)Nickman Wrote: Ok, let's see what we can do...
Try
Code:
<form action="member.php" method="post">
Username: <input type="text" class="textbox" name="username" size="25" maxlength="30" style="width: 200px;" value="" />
Password: <input type="password" class="textbox" name="password" size="25" style="width: 200px;" value="" />
<input type="submit" class="button" name="submit" value="Login" />
<input type="hidden" name="action" value="do_login" />
<input type="hidden" name="url" value="THIS IS THE CURRENT URL, WILL BE USED TO GO BACK AFTER LOGGING IN" />
</form>
Tried that nick and it won't let me login when i press the login button nothing happens?
I created the Php code in a new page and uploaded it to try but nothing?
Thanks.
|
|
| 04-05-2009 06:30 PM |
|
Nickman
Manager
Posts: 1,572
Joined: May 2008
Reputation: 32
MyBux: 310
|
|
| 04-06-2009 04:22 AM |
|
matrixsc
Junior Member
Posts: 31
Joined: Mar 2009
Reputation: 0
MyBux: 14
|
RE: How to create a new login page
[quote]
(04-06-2009 04:22 AM)Nickman Wrote: Hmmm...is your page in the same directory as your forum software or no?
Yeah i double checked that as i thought that may have been the problem .
It's just that when i click login nothing happens at all?
|
|
| 04-06-2009 07:45 AM |
|
Nickman
Manager
Posts: 1,572
Joined: May 2008
Reputation: 32
MyBux: 310
|
|
| 04-06-2009 02:35 PM |
|
matrixsc
Junior Member
Posts: 31
Joined: Mar 2009
Reputation: 0
MyBux: 14
|
RE: How to create a new login page
(04-05-2009 09:21 AM)Dalton Wrote: So just a logon box. Nothing else?
Edit: I'm sorry, I can't help. I've tried and failed.
(04-05-2009 02:45 PM)Nickman Wrote: Ok, let's see what we can do...
Try
Code:
<form action="member.php" method="post">
Username: <input type="text" class="textbox" name="username" size="25" maxlength="30" style="width: 200px;" value="" />
Password: <input type="password" class="textbox" name="password" size="25" style="width: 200px;" value="" />
<input type="submit" class="button" name="submit" value="Login" />
<input type="hidden" name="action" value="do_login" />
<input type="hidden" name="url" value="THIS IS THE CURRENT URL, WILL BE USED TO GO BACK AFTER LOGGING IN" />
</form>
(04-06-2009 04:22 AM)Nickman Wrote: Hmmm...is your page in the same directory as your forum software or no?
(04-06-2009 02:35 PM)Nickman Wrote: can you post the code of your file?
I used the code you suggested above ?
Quote:<form action="member.php" method="post">
Username: <input type="text" class="textbox" name="username" size="25" maxlength="30" style="width: 200px;" value="" />
Password: <input type="password" class="textbox" name="password" size="25" style="width: 200px;" value="" />
<input type="submit" class="button" name="submit" value="Login" />
<input type="hidden" name="action" value="do_login" />
<input type="hidden" name="url" value="THIS IS THE CURRENT URL, WILL BE USED TO GO BACK AFTER LOGGING IN" />
</form>
|
|
| 04-07-2009 12:56 AM |
|