Jump to content
[MUST READ] Forum Rules ×

E-mail is not valid


Ramboj686

Recommended Posts

So today I created a new Sign Up form for my site WebKick .you check the form here . But when I click on the Submit button it shows " E-mail is not valid "  . And also my CSS is not working on the submit button. Any suggestions @PlanetCloud ..

Original Form:

5a943d203a26e_Screenshot(1).thumb.png.6491a1e411cae5c14c0b42d6c0fb31bf.png

 

After Editing:

5a943d7bc3f5e_Screenshot(2).thumb.png.5f00edf8c605c39fdd1511a3a3254f98.png

 

E-mail Thingy:

5a943daa89815_Screenshot(3).thumb.png.92847848da0942e5981e6d42e3dc3b1e.png

 

I'm still learning so any help will be appreciated..

Link to comment
Share on other sites

50 minutes ago, Ramboj686 said:

Update:

 Solved The CSS Issue. E-mail thingy still exists...

I haven't reviewed your code, but maybe you are not passing correctly the variable for email. You could have mistyped the variable name, or similar things.

Link to comment
Share on other sites

3 hours ago, Ramboj686 said:

So today I created a new Sign Up form for my site WebKick .you check the form here . But when I click on the Submit button it shows " E-mail is not valid "  . And also my CSS is not working on the submit button. Any suggestions @PlanetCloud ..

Original Form:

5a943d203a26e_Screenshot(1).thumb.png.6491a1e411cae5c14c0b42d6c0fb31bf.png

 

After Editing:

5a943d7bc3f5e_Screenshot(2).thumb.png.5f00edf8c605c39fdd1511a3a3254f98.png

 

E-mail Thingy:

5a943daa89815_Screenshot(3).thumb.png.92847848da0942e5981e6d42e3dc3b1e.png

 

I'm still learning so any help will be appreciated..

Hi, i saw in your screenshot that their is no email field which is a required field field for registration. Putting an email field in your custom sign up form may solve this problem.

Link to comment
Share on other sites

Just now, Aqib said:

Hi, i saw in your screenshot that their is no email field which is a required field field for registration. Putting an email field in your custom sign up form may solve this problem.

Sorry, haven't seen correctly the screenshot. That problem is may be due to the wrong email variable or may be your email variable is causing conflicts with other variables

Link to comment
Share on other sites

3 hours ago, Ramboj686 said:

So today I created a new Sign Up form for my site WebKick .you check the form here . But when I click on the Submit button it shows " E-mail is not valid "  . And also my CSS is not working on the submit button. Any suggestions @PlanetCloud ..

Original Form:

5a943d203a26e_Screenshot(1).thumb.png.6491a1e411cae5c14c0b42d6c0fb31bf.png

 

After Editing:

5a943d7bc3f5e_Screenshot(2).thumb.png.5f00edf8c605c39fdd1511a3a3254f98.png

 

E-mail Thingy:

5a943daa89815_Screenshot(3).thumb.png.92847848da0942e5981e6d42e3dc3b1e.png

 

I'm still learning so any help will be appreciated..

Hi, i saw your code via inspect element and found some error

Your email field have this code : <input type="text" placeholder="E-mail" name="" required="">

The code should be something like this : <input class="form-control" type="text" name="email" size="30" value="">

Your email field is missing the value of name attribute. I think you should use this code for your email field

<input type="text" name="email" value="E-mail">

Link to comment
Share on other sites

5 hours ago, Aqib said:

Hi, i saw your code via inspect element and found some error

Your email field have this code : <input type="text" placeholder="E-mail" name="" required="">

The code should be something like this : <input class="form-control" type="text" name="email" size="30" value="">

Your email field is missing the value of name attribute. I think you should use this code for your email field

<input type="text" name="email" value="E-mail">

Thank you for advise I'll look into my code and modify it..

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...