Code

Discussion on Formplexy - CSS Forms with Validation & WP Support

Discussion on Formplexy - CSS Forms with Validation & WP Support

Cart 313 sales

HipstaCowboys does not currently provide support for this item.

32 comments found.

hey bro i hav no idea about html or php i use webdesigner software to make website….i want now login n register option can i use this with knowledge of coding i mean only by cut n paste plz reply fast

Hi, sorry for answer delay (I’ve been on long vacation).

I afraid you can’t use it without any html or php knowledge. Login or register form doesn’t work without php functions that connect database with input.

Is it possible, when using the pop up version, if a response from the program would note on the webpage “Hello Username”?

Hi,

it works great, but when does an update come with the Jquery login validation?

I can’t make a validation in Jquery, I wont to make it that only I can login with the login.

I am confused… I think that this was wordpress plugin :( Can anyone help me to integrate it with my wordpress site? I’ll pay of course… Thanks in advance.

I’m sorry for that :/ . Send me your site url, I will look at it and help if I could. I’m working with wordpress too.

This is your login form: http://health-host.co.uk/user/signin.html and this is my default wordpress login: http://www.health-host.co.uk/wp-login.php

Thanks in advance.

Can you help me with my wordpress site http://www.health-host.co.uk/ :)

what about “forgot password” page

I put this on my site but nothing happens when people try to login. Do I need to actually hook it up to something?

Totally joking :bigwink: I grabbed this for a big project I’m doing and it’s perfect. I’ll let you know when it’s complete! Well done! I gave you a 5 star rating!

Thanks a lot :D Let me know, looking forward to see it!

Hello how your could embed this sign form on clipbucket php script i mean replace the actual sign in or sign up of clip bucket

This is the sign up php <?php /* | Copyright© 2007-2010 Clip-Bucket.com. All rights reserved. | @ Author : ArslanHassan | @ Software : ClipBucket , © PHPBucket.com | $Id: signup.php 596 2011-04-21 14:41:57Z ahzulfi $ /

define(“THIS_PAGE”,”signup”); define(“PARENT_PAGE”,”signup”);

require ‘includes/config.inc.php’;

if($userquery->login_check(’’,true)){ redirect_to(BASEURL); }

/
* * Function used to call all signup functions / if(cb_get_functions('signup_page')) cb_call_functions('signup_page');
/
* * Signing up new user / if(isset($_POST['signup'])){ }
if(!config('allow_registeration'))
    e(lang('usr_reg_err'));
else
{
    $signup = $userquery->signup_user($_POST);
    if($signup)
    {
        $udetails = $userquery->get_user_details($signup);
        $eh->flush();
        assign('udetails',$udetails);
        assign('mode','signup_success');
    }
}

//Login User

if(isset($_POST[‘login’])){ $username = $_POST[‘username’]; $username = mysql_clean(clean($username)); $password = mysql_clean(clean($_POST[‘password’]));

$remember = false;
if($_POST['rememberme'])
    $remember = true;
if($userquery->login_user($username,$password,$remember))
{
    if($_COOKIE['pageredir'])
        redirect_to($_COOKIE['pageredir']);
    else
        redirect_to(cblink(array('name'=>'my_account')));
}

}

//Checking Ban Error if(!isset($_POST[‘login’]) && !isset($_POST[‘signup’])){ if(@$_GET[‘ban’] == true){ $msg = lang(‘usr_ban_err’); } }

subtitle(lang(“signup”)); //Displaying The Template template_files(’ signup.html’); display_it() ?>

AND THIS THE SIGNUP.HTML ON STYLE FOLDER OF CLIP BUCKET*

{assign var=’required_fields’ value=$userquery->load_signup_fields()} {assign var=’custom_field’ value=$userquery->custom_signup_fields}

{if $mode == ‘signup_success’} {if $udetails.usr_status !=’Ok’} {lang code=’signup_success_usr_ok’} {else} {lang code=’signup_success_usr_emailverify’ assign=’signupsuccessusremailverify’} {link name=’login’ assign=’login_link’} {$signupsuccessusremailverify|sprintf:$login_link} {/if} {else}

{lang code=’user_mem_login’}

{lang code=’if_you_already_hv_account’} <form name=”login_form” id=”login_form” method=”post” action=”” {ANCHOR place=’cb_login_form_tag’}> <label for=”login_username” class=”label”>{lang code=’username’} : </label> <input name=”username” type=”text” id=”cb_login_username” size=”30” > <label for=”login_password” class=”label”>{lang code=’password’} : </label> <input name=”password” type=”password” id=”cb_login_password” size=”30” > <label for=”” class=”label”> </label> {ANCHOR place=’before_login_button’} <input type=”submit” name=”login” class=”cb_button_2” value=”{lang code=’login’}” id=”login_signup_bttn” {ANCHOR place=’login_signup_bttn’} > {ANCHOR place=’after_login_button’} {lang code=’user_forgot_password’} | {lang code=’user_forgot_username’} {ANCHOR place=’login_form’} </form> {lang code=’signup_message_under_login’}

{lang code=’new_mems_signup_here’}

{lang code=’register_as_our_website_member’} <form name=”login_form” id=”login_form” method=”post” action=”” > {foreach from=$required_fields item=field} <label for=”{$field.id}” class=”label”>{$field.title}</label> {if $field.hint_1} {$field.hint_1} {/if} {ANCHOR place=$field.anchor_before}{$formObj->createField($field)}{ANCHOR place=$field.anchor_after} {if $field.hint_2} {$field.hint_2} {/if} {/foreach} <!- Loading Custom Fields -> {foreach from=$custom_field item=field} <label for=”{$field.id}” class=”label”>{$field.title}</label> {if $field.hint_1} {$field.hint_1} {/if} {ANCHOR place=$field.anchor_before}{$formObj->createField($field)}{ANCHOR place=$field.anchor_after} {if $field.hint_2} {$field.hint_2} {/if} {/foreach} <!- Loading Captcha if anny -> {assign var=captcha value=func->get_captcha()} {if $captcha} {if $captcha.show_field} <label class=”label” for=”verification_code”>Verification Code</label> {load_captcha captcha=$captcha load=field field_params = ’ id=”verification_code” ‘} {/if} {load_captcha captcha=$captcha load=function} {/if} <input name=”agree” type=”checkbox” id=”agree” value=”yes” checked=”checked” /> {lang code=’user_i_agree_to_the’ assign=’user_i_agree_to_the’} – {$user_i_agree_to_the|sprintf:$cbpage->get_page_link(3):$cbpage->get_page_link(2)} <label for=”” class=”label”> </label> <input type=”submit” name=”signup” class=”cb_button_2” value=”{lang code=’signup’}” style=”margin-top:10px” /> {ANCHOR place=’signup_form’} </form> {/if} *
THIS IS THEIR SIGN UP DEMO PAGE http://clipbucket.net/demo/signup

Thanks on advance.

I’m afraid I can’t help you :/ I have no experience with clipbucket. And php know just a basics. I’m sorry.

Ok no problem.

Can have it working as pop up?

Yes, you can. There is a div with class “form”. It’s a rectangle and everything is in it. So you can grab this div and do it everything you want -> you can show it just like a pop up.

Its verry good but I am having troubles making the Jquery validation with name and password.

I don’t know how to make that validation, when is that update their. Sorry for the bad English.

I’m very sorry but I really don’t know what problem do you have. Can you write some usecase, or progress flow. Thank you.

Nice, very nice with Jquery.

But I have just one question, the succes thing thats made for the registration page.

Can you make it a green div?

Hi, there is a class .green and that’s make a green background. But it will not change color font to white in success.html.

So if you want to use it in success.html. Just do this:

1. Add class .green to on line 27 in success.html

2. Add one line ‘color: #fff;’ to .green class in css file.

Did you mean this, or do you wanna change the success toggle in registration.html? For this, just change class “red” to “green” in error box div.

If you like it, please rate :) I appreciate it. And if there will be anyting, ask me.

Thanks

I am looking for validation that will allow letters numbers and a few other charactors I would like to decide myself.. the thing is that i want to prevent input that might crash a sql call if it is in the string being updated – simple example would be double quotes.. if i have that inside a string thats defined within double quotes, thats going to cause an error. But I might want underscores or other non-alphanumeric charactors.

This case my validation can’t solve. It validates email format, empty inputs and checkboxes. But good point for next update. Thanks

Hi, im having trouble sending posted information.

The reason for this, is when you click submit it then just refreshes.

Ive tried to use the jquery post ajax function within the jquery function of registration.

Ive even tried adding a method of post and a action to a specific php file to grab all content that way.

But for some reason all it does is refresh the page.

Where in the code are you refreshing the page, i cant see it in the html or the scripts.js file.

Ive read the help file which does not help with hooking the data to another file.

I dont see any ajax use to a form and there is no actions within the html side either.

Thanks

the form was probably clashing with some other jquery i am using. but it works now after modifying the jquery :)

Great! But good point, I’m working right now on some update to explain how to grab data for a php handling.

If you like the validation, please rate it :) And if you have other bugs in future, just let me know. Thanks

Just rated 5, even though i found an issue, chances are it was a clash with scripts i have made and not this actual script.

luckily i am a developer so i could do this with no help ;)

Just a quick heads up, just incase someone who does not know jquery, and they cant get it to work, i would use jquery noconflict method :)

Anyway i have given a 5 because i am an author on 3 envato marketplaces and i personally believe that if there is no issue directly with the item and/or the support is quick and polite then the buyer is getting their few dollers worth and this file is a well coded file, support was quick so i am more than happy.

Just wish others would rate my items this way ;)

Item looks nice by the way, i like the clean crisp look.

Good work!

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey