[Pro] Is there a way to do this on a form??

Hi all,

new season is about to begin.

I was wondering, my parents are going to fill out a form (I am using PHP feedback form).

There will be a place for them to enter their email address.
Is there a way I can make it so they need to confirm their email by typing twice as you see often hoping they will match.?

I know sometimes they can copy and paste so I could ask them to retype it, but is there anything better and simple?

Thanks!!!

Barry


freewaytalk mailing list
email@hidden
Update your subscriptions at:

Rather than a double entry - what about this script?

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:

Looks interesting and a fine idea.

Can you make a small example with this in u use Dave or do you have a link to a page to see this in action?
Thanks
Barry


freewaytalk mailing list
email@hidden
Update your subscriptions at:

Can you make a small example with this in u use

Going out just now but I will put one together for you a bit later.

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
https://freewaytalk.softpress.com/person/options

You are awesome.
Enjoy Sunday.


freewaytalk mailing list
email@hidden
Update your subscriptions at:

OK - here it is http://www.deltadesign.co/FW7Test/simple-form-check.html

1 - Add the following script in Page>Html Markup in the Before section.

<script>
function alertemail(which){
if (confirm("You entered ""+which.value+"" as your email address. Is that correct?"))
return true
else{
which.focus()
return false
}
}
</script>

2 - Make sure that the Name and the ID of your email field are email.

3 - Apply the PHPFF action as a page action.

4 - Go to Page>Form Setrup and under the Extended Tab add the name/value pair of

onSubmit/return alertemail(email)

Note that ‘email’ in here matches the name/ID of your email field.

5 - Upload and test

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:

Thanks Dave,

Look forward to trying it.

I’ll let you know.

Thanks again,

Barry


freewaytalk mailing list
email@hidden
Update your subscriptions at: