Welcome, Guest. Please Login or Register.
May 14, 2025, 11:15:38 PM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  Development  |  Mod Ideas and Creation  |  'Quick register' @ phptalk.com « previous next »
Pages: [1] Reply Ignore Print
Author Topic: 'Quick register' @ phptalk.com  (Read 798 times)
Greg Robson
Training to be like Joseph
YaBB SE Developer
YaBB God
*****
Posts: 1459


Hello!

ICQ - 81390136 WWW
'Quick register' @ phptalk.com
« on: April 19, 2002, 06:55:21 PM »
Reply with quote

Noticed that phptalk.com http://talk.phptalk.com/ have a 'quick registration' feature thingy at the top of the page (make sure you're not logged in if you have registered)

It just has username, email, password and verify password with a submit button. Would be quite a nice optional feature so people starting their boards can get their users to sign up quickly :)
Logged

You can't have everything... where would you put it? -- Steve Wright
DiabloRex
Full Member
***
Posts: 103


ICQ - 11560069 WWW
Re:'Quick register' @ phptalk.com
« Reply #1 on: April 19, 2002, 07:00:14 PM »
Reply with quote

uhm havnt yabb had this for quite a long time? all the way back to the gold days.
Logged
Greg Robson
Training to be like Joseph
YaBB SE Developer
YaBB God
*****
Posts: 1459


Hello!

ICQ - 81390136 WWW
Re:'Quick register' @ phptalk.com
« Reply #2 on: April 19, 2002, 07:03:09 PM »
Reply with quote

I've never seen it - if it is in YaBB SE can someone tell me where?
Logged

You can't have everything... where would you put it? -- Steve Wright
DiabloRex
Full Member
***
Posts: 103


ICQ - 11560069 WWW
Re:'Quick register' @ phptalk.com
« Reply #3 on: April 19, 2002, 08:17:06 PM »
Reply with quote

In forum preferences you just remove the cross from "Email Random Password to New Member Upon Registration?"
Logged
Greg Robson
Training to be like Joseph
YaBB SE Developer
YaBB God
*****
Posts: 1459


Hello!

ICQ - 81390136 WWW
Re:'Quick register' @ phptalk.com
« Reply #4 on: April 19, 2002, 08:23:55 PM »
Reply with quote

I don't think you quite understand? :-\

If you're not a registered user all the pages have a four text boxes underneath the navigation with 4 textboxes and a submit button. That's what I'm interested in - it's a 1 step process.

Unless of course that checkbox you're on about has that effect?
Logged

You can't have everything... where would you put it? -- Steve Wright
Big P
Mod Team
YaBB God
*****
Posts: 1462


"Back in '68, I don't like you, The End."

ICQ - 76064555pierceward@hotmail.com WWW
Re:'Quick register' @ phptalk.com
« Reply #5 on: April 19, 2002, 08:34:51 PM »
Reply with quote

I know what you mean. Really easy; just open Register.php and get some code, like:

<form action="$cgi;action=register2" method="POST" name="creator">
    <td class="windowbg" bgcolor="$color[windowbg]" width="100%">
    <table cellpadding="3" cellspacing="0" border=0 width="100%">
      <tr>
        <td width="40%"><font size=2>* <b>$txt[98]:</b></font>
        <BR><font size="1">$txt[520]</font></td>
        <td><input type=text name=user size=20 maxlength=18></td>
      </tr><tr>
        <td><input type=text name=email size=30>
        <BR><font size="1">$txt[679]</font></td>
      <tr>
        <td width="40%"><font size=2>* <b>$txt[81]:</b></font></td>
        <td><font size=2><input type=password name=passwrd1 size=30></font></td>
      </tr><tr>
        <td width="40%"><font size=2>* <b>$txt[82]:</b></font></td>
        <td><font size=2><input type=password name=passwrd2 size=30></font></td>
      </tr>
<input type=submit value="$txt[97]">
</form>

Thats just some guess work. Try put it in a html document to see if it'll come out right. If it looks good add it to BoardIndex.php.
But note! You'll have to make sure the user isn't a guest also, so wrap this if string around your final html:

if ($username == "Guest") {
print<<<EOT;
CODE!
EOT; }

I'm sure you can just fix it yourself, I haven't tested this, just copied the needed code. Plus you'll have to search in boardindex.php for where to put it.  ;)
Logged

PHPNews has been released!!! Download it now!!!
DiabloRex
Full Member
***
Posts: 103


ICQ - 11560069 WWW
Re:'Quick register' @ phptalk.com
« Reply #6 on: April 19, 2002, 08:37:28 PM »
Reply with quote

If I understand you correctly, you want something like this?

http://213.237.35.1/DiabloRex/register.jpg
Logged
Greg Robson
Training to be like Joseph
YaBB SE Developer
YaBB God
*****
Posts: 1459


Hello!

ICQ - 81390136 WWW
Re:'Quick register' @ phptalk.com
« Reply #7 on: April 19, 2002, 08:53:40 PM »
Reply with quote

Yeah, just the four text boxes and a submit button - thought it was quite a good way to get people to register - it's so easy - how could they refuse! ;) :D

Cheers Big P - great help - might even make a mod if I have the time :)
Logged

You can't have everything... where would you put it? -- Steve Wright
Big P
Mod Team
YaBB God
*****
Posts: 1462


"Back in '68, I don't like you, The End."

ICQ - 76064555pierceward@hotmail.com WWW
Re:'Quick register' @ phptalk.com
« Reply #8 on: April 19, 2002, 08:54:38 PM »
Reply with quote

Yeah, but on the boardindex, why not go to the link shown above to see what he means! lol.
Logged

PHPNews has been released!!! Download it now!!!
Greg Robson
Training to be like Joseph
YaBB SE Developer
YaBB God
*****
Posts: 1459


Hello!

ICQ - 81390136 WWW
Re:'Quick register' @ phptalk.com
« Reply #9 on: April 19, 2002, 09:06:53 PM »
Reply with quote

hence why I said "just the four text boxes and a submit button" ;)
Logged

You can't have everything... where would you put it? -- Steve Wright
David
Destroyer Dave
Global Moderator
YaBB God
*****
Posts: 5761


I'm not a llama!

WWW
Re:'Quick register' @ phptalk.com
« Reply #10 on: April 19, 2002, 09:36:16 PM »
Reply with quote

I didn't register there until I saw that quick register.
Logged

Big P
Mod Team
YaBB God
*****
Posts: 1462


"Back in '68, I don't like you, The End."

ICQ - 76064555pierceward@hotmail.com WWW
Re:'Quick register' @ phptalk.com
« Reply #11 on: April 19, 2002, 09:58:16 PM »
Reply with quote

Quote from: Greg Robson on April 19, 2002, 09:06:53 PMhence why I said "just the four text boxes and a submit button" ;)
posted at the same time.  ;)
Logged

PHPNews has been released!!! Download it now!!!
PHPTALK.com
Noobie
*
Posts: 17


llama?

Re:'Quick register' @ phptalk.com
« Reply #12 on: May 03, 2002, 12:07:31 AM »
Reply with quote

Hi.

Quick registration at www.phptalk.com is not available in Yabb board by default. It requires some modifications...

By the way, it behaves like that: If you click register button, it then disappers likewise if you click on login button also.

I also added quick login at the top. They lies now at the same table cells.




PS: Users online in last 24 hours mode is available at: http://talk.phptalk.com/index.php?board=9;action=display;threadid=301

After about some months later, i plan to add "WHICH USERS NOW BROWSING WHICH FORUMS" mode , if i find some time to do...

« Last Edit: May 03, 2002, 12:25:08 AM by PHPTALK.com » Logged

PHPTALK.com
Talk, talk, talk everything about php language, unlimited!...
Delinquently insane
Foolish One
YaBB God
*****
Posts: 529


The One Surpassed By God!!!!

Re:'Quick register' @ phptalk.com
« Reply #13 on: May 03, 2002, 12:40:38 AM »
Reply with quote

After about some months later, i plan to add "WHICH USERS NOW BROWSING WHICH FORUMS" mode , if i find some time to do...


Already Done Look In Completed Mods  :)

I Posted In Your Other Post.. The Way You Added It To is messed up.. you could at least made it into a board mod or yp.. :-\
Logged

ALL MODS Cancelled projected terminated
Webby
Beta Tester
YaBB God
*****
Posts: 829


Some mistakes are too funny to make only once.

ICQ - 9814812webby@salesplaza.nl WWW
Re:'Quick register' @ phptalk.com
« Reply #14 on: May 03, 2002, 05:30:51 AM »
Reply with quote

Quote from: PHPTALK.com on May 03, 2002, 12:07:31 AMHi.

Quick registration at www.phptalk.com is not available in Yabb board by default. It requires some modifications...

By the way, it behaves like that: If you click register button, it then disappers likewise if you click on login button also.

I also added quick login at the top. They lies now at the same table cells.


Would you mind sharing it with us ?
And : would it be possible to add a REQUIRED field, like....location...?  
So people can register quickly AND fill in this field ?

Thanx in advance !
Logged

Webby of salesplaza.nl
The YaBBSE buttongenerator : Click HERE !
Pages: [1] Reply Ignore Print 
YaBB SE Community  |  Development  |  Mod Ideas and Creation  |  'Quick register' @ phptalk.com « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.049 seconds with 20 queries.