vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Is there a mod that makes registration quicker? (https://vborg.vbsupport.ru/showthread.php?t=219856)

cheat-master30 07-30-2009 09:19 PM

Is there a mod that makes registration quicker?
 
Or more specifically, reduces the registration to the fields on the actual form, a tick box for saying that the member agrees to the rules, and a form for date of birth that gets checked when submit is pressed? Seriously, I'm thinking that the three page registration thing used in vBulletin by default is ridiculously long winded and is probably putting off quite a few new members.

nirvana43 07-31-2009 01:36 AM

You mean like this 1 : https://vborg.vbsupport.ru/showthread.php?t=114342

Or

if you don't care about zillions of spam registrants then put this in your forumhome :

Code:

<if condition="$show['guest']">
<table width="100%">
<tr><td class="thead">Quick Register</td></tr>
<script type="text/javascript" src="clientscript/vbulletin_md5.js"></script>
<script type="text/javascript">
function verify_passwords(password1, password2)
{
// do various checks, this will save people noticing mistakes on next page
if (password1.value == '' || password2.value == '')
{
  alert('Fill out both password fields');
  return false;
}
else if (password1.value != password2.value)
{
  alert('Entered passwords do not match');
  return false;
}
else
{
 
 
  md5hash(password1, document.forms.register.password_md5);
  md5hash(password2, document.forms.register.passwordconfirm_md5);
 
 
 
  return true;
}
return false;
}
</script>
<form action="register.php" name="register" method="post" onsubmit="return verify_passwords(password, passwordconfirm);">
<input type="hidden" name="s" value="" />
<input type="hidden" name="do" value="addmember" />
<input type="hidden" name="url" value="index.php" />
<input type="hidden" name="agree" value="1" />
<input type="hidden" name="password_md5" />
<input type="hidden" name="passwordconfirm_md5" />

<tr><td class="alt2" align="center"><span class="smallfont">
User Name:<br />
<input type="text" class="bginput" name="username" maxlength="15" value="" style="width:110px" />
<br />
Password:<br />
<input type="password" class="bginput" name="password" maxlength="15" value="" style="width:110px" />
<br />
Confirm Password:<br />
<input type="password" class="bginput" name="passwordconfirm" maxlength="15" value="" style="width:110px" />
<br />
Email Address:<br />
<input type="text" class="bginput" name="email" maxlength="50" value="" style="width:110px" />
<br />
Confirm Email Address:<br />
<input type="text" class="bginput" name="emailconfirm" maxlength="50" value="" style="width:110px" />
<br />
<input type="submit" class="button" value="Submit" accesskey="s" />
</span></td></tr>
</table>
</if>

:)

cheat-master30 07-31-2009 06:02 PM

Kind of like that, but on the register.php page rather than the forum home page.


All times are GMT. The time now is 06:10 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01938 seconds
  • Memory Usage 1,720KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete