Hello
I am using Chrono Forms 3.1 RC5.5 + CB 1.2.2
I want to make a Chrono Registration Form and when the user register, all data must go to User Management from CB. I added a "City" field, and after the user registers, the City field in CB User Manager is empty. How can I fix that bug? What am I doing wrong?
1. I built a Chrono Form

CB Plugin Configuration

2. And I fill the form like that -
Name - MyName
UserName - MyUserName
Email - [email]myemail@gmail.com[/email]
Password - xxxxx
Confirm Password - xxxxx
City - MyCity

3. And I go to UserManager from CB, and the City Field is empty.
I am using Chrono Forms 3.1 RC5.5 + CB 1.2.2
I want to make a Chrono Registration Form and when the user register, all data must go to User Management from CB. I added a "City" field, and after the user registers, the City field in CB User Manager is empty. How can I fix that bug? What am I doing wrong?
1. I built a Chrono Form

<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">Name</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="" id="text_0" name="text_0" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">UserName</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="" id="text_1" name="text_1" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">Email</label>
<input class="cf_inputbox required validate-email" maxlength="150" size="30" title="" id="text_3" name="text_3" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_password">
<label class="cf_label" style="width: 150px;">Password</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="" id="text_4" name="pass1" type="password" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_password">
<label class="cf_label" style="width: 150px;">Confirm Password</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="" id="text_5" name="pass2" type="password" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">City</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="" id="text_10" name="text_10" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_captcha">
<label class="cf_label" style="width: 150px;">Image Verification</label>
<span>{imageverification}</span>
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_button">
<input value="Register" name="button_7" type="submit" />
</div>
<div class="cfclear"> </div>
</div>
CB Plugin Configuration

2. And I fill the form like that -
Name - MyName
UserName - MyUserName
Email - [email]myemail@gmail.com[/email]
Password - xxxxx
Confirm Password - xxxxx
City - MyCity

3. And I go to UserManager from CB, and the City Field is empty.
