[CDB] Confirm e-mail

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Scam Warning
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3738
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay
Contact:

[CDB] Confirm e-mail

Post by Kailey »

Extension Name: Confirm e-mail
Author: kinerity

Extension Description: An extension for phpBB 3.2.x that adds the 'confirm e-mail address' field to the registration screen.
Extension Version: [RC] 1.0.0

Requirements: 3.2.0

Screenshots: Image

Demo URL: https://dev.project-w.org/
Demo Username: n/a
Demo Password: n/a

GitHub Repository: https://github.com/kinerity/confirmemail
Extension Download: https://github.com/kinerity/confirmemai ... /1.0.0-RC1

Pretty much done and ready for validation, but wanted to put this out here first. Credit to Steve for some of the modifications for this extension.
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules

If you have any questions about the rules/customs of this website, feel free to send me a PM.
My little corner of the world, where I sometimes post things documented from my job.
chfs
Registered User
Posts: 247
Joined: Mon Feb 04, 2013 10:01 am

Re: [3.2][RC] Confirm e-mail

Post by chfs »

Thanks!
Nice Extension

will compatible with RegCheck?

https://github.com/tas2580/regcheck
I'm sorry for my english. :?
User avatar
Hartenheer
Registered User
Posts: 780
Joined: Fri Jan 23, 2015 12:23 pm
Location: The Netherlands
Name: Willem Hartman
Contact:

Re: [3.2][RC] Confirm e-mail

Post by Hartenheer »

Wonderful, a few weeks ago I had asked for this extension.
Then got a reaction that was unnecessary

+10
Sorry English is not my native language :oops:
regards: Willem

https://bierfijnproevers.nl/bierforum
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3738
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay
Contact:

Re: [3.2][RC] Confirm e-mail

Post by Kailey »

chfs wrote: Sun Sep 03, 2017 11:32 pm will compatible with RegCheck?

https://github.com/tas2580/regcheck
Not out of the box. It would require code changed to that extension.
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules

If you have any questions about the rules/customs of this website, feel free to send me a PM.
My little corner of the world, where I sometimes post things documented from my job.
User avatar
RMcGirr83
Former Team Member
Posts: 22016
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: [3.2][RC] Confirm e-mail

Post by RMcGirr83 »

regcheck just checks if the email is allowed. If you use that and the email is allowed then why would you want to check on the email that is entered as a validation?
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then buy me a beer Image
User avatar
Hartenheer
Registered User
Posts: 780
Joined: Fri Jan 23, 2015 12:23 pm
Location: The Netherlands
Name: Willem Hartman
Contact:

Re: [3.2][RC] Confirm e-mail

Post by Hartenheer »

RMcGirr83 wrote: Tue Sep 05, 2017 12:56 am regcheck just checks if the email is allowed. If you use that and the email is allowed then why would you want to check on the email that is entered as a validation?
Many people fill in the wrong email.
With this control, the chance is less.

I know you can copy and paste, but most people can only use Facebook and have no idea that this is possible.
Sorry English is not my native language :oops:
regards: Willem

https://bierfijnproevers.nl/bierforum
User avatar
Steve
Registered User
Posts: 1481
Joined: Tue Apr 07, 2009 7:48 pm
Name: Steven Clark
Contact:

Re: [3.2][RC] Confirm e-mail

Post by Steve »

Code: Select all

<!-- IF S_REGISTRATION -->
<script type="text/javascript">
$(function() {

	var $form = $('#register');
	
	var new_dl = '';
	new_dl += '<dl>';
	new_dl += '<dt><label for="email_confirm">{LA_CONFIRM_EMAIL}{LA_COLON}</label></dt>';
	new_dl += '<dd><input type="email" name="email_confirm" id="email_confirm" size="25" maxlength="100" value="{EMAIL_CONFIRM}" class="inputbox autowidth" title="{LA_CONFIRM_EMAIL}" autocomplete="off" /></dd>';
	new_dl += '</dl>';
	
	$form.find('input[type=email][id=email]').parents('dl').after(new_dl);
	
	$('input[type=email][id=email_confirm]').on("cut copy paste", function(e) {
		e.preventDefault();
	});
});
</script>
<!-- ENDIF -->
you could use this to prevent copy and paste.
@ The Chief Medical Officers guideline for men is that: You are safest not to drink regularly more than 14 units per week.
- I drank that today++ :lol: 🍺
User avatar
Hartenheer
Registered User
Posts: 780
Joined: Fri Jan 23, 2015 12:23 pm
Location: The Netherlands
Name: Willem Hartman
Contact:

Re: [3.2][RC] Confirm e-mail

Post by Hartenheer »

Steve wrote: Tue Sep 05, 2017 5:52 am

Code: Select all

<!-- IF S_REGISTRATION -->
<script type="text/javascript">
$(function() {

	var $form = $('#register');
	
	var new_dl = '';
	new_dl += '<dl>';
	new_dl += '<dt><label for="email_confirm">{LA_CONFIRM_EMAIL}{LA_COLON}</label></dt>';
	new_dl += '<dd><input type="email" name="email_confirm" id="email_confirm" size="25" maxlength="100" value="{EMAIL_CONFIRM}" class="inputbox autowidth" title="{LA_CONFIRM_EMAIL}" autocomplete="off" /></dd>';
	new_dl += '</dl>';
	
	$form.find('input[type=email][id=email]').parents('dl').after(new_dl);
	
	$('input[type=email][id=email_confirm]').on("cut copy paste", function(e) {
		e.preventDefault();
	});
});
</script>
<!-- ENDIF -->
you could use this to prevent copy and paste.
Thank you Steve. Where should this be placed?
Sorry English is not my native language :oops:
regards: Willem

https://bierfijnproevers.nl/bierforum
User avatar
Steve
Registered User
Posts: 1481
Joined: Tue Apr 07, 2009 7:48 pm
Name: Steven Clark
Contact:

Re: [3.2][RC] Confirm e-mail

Post by Steve »

@ The Chief Medical Officers guideline for men is that: You are safest not to drink regularly more than 14 units per week.
- I drank that today++ :lol: 🍺
User avatar
Hartenheer
Registered User
Posts: 780
Joined: Fri Jan 23, 2015 12:23 pm
Location: The Netherlands
Name: Willem Hartman
Contact:

Re: [3.2][RC] Confirm e-mail

Post by Hartenheer »

Sorry English is not my native language :oops:
regards: Willem

https://bierfijnproevers.nl/bierforum
User avatar
tojag
Registered User
Posts: 422
Joined: Thu Aug 07, 2014 8:00 am
Location: Warsaw, Poland, EU
Name: Gregory

Re: [3.2][RC] Confirm e-mail

Post by tojag »

Is it still the RC version? Were any errors detected?
Best regards
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3738
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay
Contact:

Re: [3.2][RC] Confirm e-mail

Post by Kailey »

tojag wrote: Wed Nov 08, 2017 8:17 pm Is it still the RC version?
Yes, I haven't had the chance to finalize and submit for validation. It's on the list though.
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules

If you have any questions about the rules/customs of this website, feel free to send me a PM.
My little corner of the world, where I sometimes post things documented from my job.
User avatar
spaceace
Registered User
Posts: 1999
Joined: Wed Jan 30, 2008 8:50 pm
Contact:

Re: [3.2][RC] Confirm e-mail

Post by spaceace »

only issue i had was out of the box, the confirm email was showing under the confirm password. i use my own style and also use a custom extension to modify the base style to suit my site. the issue is fixed when i add the contents of overall_footer_after.html from your extension to that same event in my style modifying extension. my style does not inherit from prosilver so i don't know if that is what causes this. i do not use prosilver at all on my site.

nice extension :D
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3738
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay
Contact:

Re: [3.2][RC] Confirm e-mail

Post by Kailey »

spaceace wrote: Mon Nov 13, 2017 5:33 pm my style does not inherit from prosilver
Correct, prosilver-inherited styles should work. Other styles will require manual edits.

I have submitted the extension for validation.
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules

If you have any questions about the rules/customs of this website, feel free to send me a PM.
My little corner of the world, where I sometimes post things documented from my job.
User avatar
tojag
Registered User
Posts: 422
Joined: Thu Aug 07, 2014 8:00 am
Location: Warsaw, Poland, EU
Name: Gregory

Re: [3.2][RC] Confirm e-mail

Post by tojag »

kinerity wrote: Mon Nov 13, 2017 11:10 pm I have submitted the extension for validation.
Good job. Super!
Locked

Return to “Extensions in Development”