Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to create a new login page
Author Message
matrixsc
Junior Member


Posts: 33
Joined: Mar 2009
Reputation: 0
MyBux: 12
Post: #1
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

[Image: 35211231736726.gif]


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,094
Joined: Aug 2008
Reputation: 3
MyBux: 288
Post: #2
RE: How to create a new login page
Like on http://mybbtuts.com/community/
(i know the board is closed, but try clicking on the "login" link anyway)

04-05-2009 04:29 AM


matrixsc
Junior Member


Posts: 33
Joined: Mar 2009
Reputation: 0
MyBux: 12
Post: #3
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,094
Joined: Aug 2008
Reputation: 3
MyBux: 288
Post: #4
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,614
Joined: May 2008
Reputation: 32
MyBux: 394
Post: #5
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>



Free Traffic for your forum! | Small URLs | Orbit Arcade | Tech news at a glance | BestVidz.net | Download'en
04-05-2009 02:45 PM
matrixsc
Junior Member


Posts: 33
Joined: Mar 2009
Reputation: 0
MyBux: 12
Post: #6
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,614
Joined: May 2008
Reputation: 32
MyBux: 394
Post: #7
RE: How to create a new login page
Hmmm...is your page in the same directory as your forum software or no?



Free Traffic for your forum! | Small URLs | Orbit Arcade | Tech news at a glance | BestVidz.net | Download'en
04-06-2009 04:22 AM
matrixsc
Junior Member


Posts: 33
Joined: Mar 2009
Reputation: 0
MyBux: 12
Post: #8
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,614
Joined: May 2008
Reputation: 32
MyBux: 394
Post: #9
RE: How to create a new login page
can you post the code of your file?



Free Traffic for your forum! | Small URLs | Orbit Arcade | Tech news at a glance | BestVidz.net | Download'en
04-06-2009 02:35 PM
matrixsc
Junior Member


Posts: 33
Joined: Mar 2009
Reputation: 0
MyBux: 12
Post: #10
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


 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Creating my own NEWTHREAD page... need some quick infos BrownChiLD 3 53 04-15-2009 01:51 AM
Last Post: ByteHunter
  Custom forum down page patf 4 48 04-12-2009 06:51 AM
Last Post: Bluepower10
  Latest poll in index page side box??? karthikguru 0 29 01-09-2009 04:36 PM
Last Post: karthikguru
  html code for "redirect user to the page where he came from" karthikguru 5 147 12-21-2008 06:16 AM
Last Post: Dalton



New to MyBBSource?Need Assistance?
  • Mark Forums Read
  • View Forum Staff
  • Looking for a MyBB Host?

  



Theme created by AK-47. Find more great themes and skins at K! Dezign R1s.net