|
|
|
@ -10,16 +10,13 @@ |
|
|
|
|
|
|
|
<h1> |
|
|
|
<small>Step {% step_order step="children" %}:</small>Your Children |
|
|
|
<span class="form-group"> |
|
|
|
<input type="button" id="btn_add_child" class="btn btn-success" value="Add Child"/> |
|
|
|
</span> |
|
|
|
</h1> |
|
|
|
<div class="question-well"> |
|
|
|
<table id="your_children_table" class="list-builder"> |
|
|
|
<div class="question-well children-list"> |
|
|
|
<table id="claimant_children" class="list-builder"> |
|
|
|
<thead> |
|
|
|
<tr class="list-builder-header"> |
|
|
|
<th class="table-bordered">Child's Name</th> |
|
|
|
<th class="table-bordered">Birthdate</th> |
|
|
|
<th class="table-bordered">Birth date</th> |
|
|
|
<th class="table-bordered">Child now living with</th> |
|
|
|
<th class="table-bordered">Relationship to Claimant 1</th> |
|
|
|
<th class="table-bordered">Relationship to Claimant 2</th> |
|
|
|
@ -28,235 +25,233 @@ |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<tr class="child-disabled-group" data-counter="0" hidden> |
|
|
|
{% include "partials/your_children_child.html" with div_id="hidden" %} |
|
|
|
<tr class="child-disabled-group" data-counter="0" hidden> |
|
|
|
{% include "partials/your_children_child.html" with div_id="hidden" %} |
|
|
|
</tr> |
|
|
|
{% if claimant_children and claimant_children != '[]' %} |
|
|
|
{% multiple_values_to_list source=claimant_children as children %} |
|
|
|
{% for child in children %} |
|
|
|
<tr class="child-item-row" data-counter="{{ forloop.counter }}"> |
|
|
|
{{ child.name }} |
|
|
|
{% include "partials/your_children_child.html" with name=child.child_name birth_date=child.child_birth_date live_with=child.child_live_with custody=child.child_custody live_with=child.child_live_with relationship_to_you=child.child_relationship_to_you relationship_to_spouse=child.child_relationship_to_spouse other_details=child.child_live_with_other_details div_id=forloop.counter counter=forloop.counter %} |
|
|
|
</tr> |
|
|
|
{% if claimant_children and claimant_children != '[]' %} |
|
|
|
{% multiple_values_to_list source=claimant_children as children %} |
|
|
|
{% for child in children %} |
|
|
|
<tr class="child-item-row" data-counter="{{ forloop.counter }}"> |
|
|
|
{{ child.name }} |
|
|
|
{% include "partials/your_children_child.html" with name=child.child_name birth_date=child.child_birth_date live_with=child.child_live_with custody=child.child_custody live_with=child.child_live_with relationship_to_you=child.child_relationship_to_you relationship_to_spouse=child.child_relationship_to_spouse other_details=child.child_live_with_other_details div_id=forloop.counter counter=forloop.counter %} |
|
|
|
</tr> |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
<div class="form-button"> |
|
|
|
<input type="button" id="btn_add_child" class="btn btn-success" value="Add Child"/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="children-questions" hidden> |
|
|
|
<div> |
|
|
|
<p> |
|
|
|
Please answer the questions below <strong>for each</strong> of your children. |
|
|
|
Their name will be added to the list above. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<div class="children-questions" hidden> |
|
|
|
|
|
|
|
<div class="question-well"> |
|
|
|
<h3>What is your child's name?</h3> |
|
|
|
<p>Enter full name</p> |
|
|
|
{% input_field type="text" name="child_name" class="form-block input-wide response-textbox children-input-block" placeholder="First, Middle, Last Name" data_mirror="true" data_mirror_target="#child_name_0" data_skip_ajax="true" %} |
|
|
|
</div> |
|
|
|
<div class="question-well"> |
|
|
|
<h3>What is your child's name?</h3> |
|
|
|
<p>Enter full name</p> |
|
|
|
{% input_field type="text" name="child_name" class="form-block input-wide response-textbox children-input-block" placeholder="First, Middle, Last Name" data_mirror="true" data_mirror_target="#child_name_0" data_skip_ajax="true" %} |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div class="question-well"> |
|
|
|
<h3>What is your child's date of birth?</h3> |
|
|
|
<p> |
|
|
|
<span class="input-group date date-picker-group"> |
|
|
|
{% input_field type="text" name="child_birth_date" class="date-picker form-control children-input-block" id="childs_birth_date" placeholder="MMM D, YYYY" data_mirror="true" data_mirror_target="#child_birth_date_0" data_skip_ajax="true" %} |
|
|
|
<span class="input-group-addon"> |
|
|
|
<i class="fa fa-calendar circle"></i> |
|
|
|
</span> |
|
|
|
<div class="question-well"> |
|
|
|
<h3>What is your child's date of birth?</h3> |
|
|
|
<p> |
|
|
|
<span class="input-group date date-picker-group"> |
|
|
|
{% input_field type="text" name="child_birth_date" class="date-picker form-control children-input-block" id="childs_birth_date" placeholder="MMM D, YYYY" data_mirror="true" data_mirror_target="#child_birth_date_0" data_skip_ajax="true" %} |
|
|
|
<span class="input-group-addon"> |
|
|
|
<i class="fa fa-calendar circle"></i> |
|
|
|
</span> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
</span> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="question-well"> |
|
|
|
<h3>Where/whom does this child currently live with?</h3> |
|
|
|
<p>Please select one</p> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with you" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %} |
|
|
|
{% if name_you %}{{ name_you }}{% else %}You{% endif %} |
|
|
|
</label> |
|
|
|
<p>Child lives primarily (more than 60%) with this parent</p> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with spouse" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %} |
|
|
|
{% if name_spouse %}{{ name_spouse }}{% else %}Your spouse{% endif %} |
|
|
|
</label> |
|
|
|
<p>Child lives primarily (more than 60%) with this parent</p> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with both" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %} |
|
|
|
Both/Shared |
|
|
|
{% if name_you %}{{ name_you }}{% else %}you{% endif %} and |
|
|
|
{% if name_spouse %}{{ name_spouse }}{% else %}your spouse{% endif %} |
|
|
|
</label> |
|
|
|
<p>The child live with both parents more or less equally (between 40-60% of the time with each |
|
|
|
parent)</p> |
|
|
|
</div> |
|
|
|
<div class="question-well"> |
|
|
|
<h3>Where/whom does this child currently live with?</h3> |
|
|
|
<p>Please select one</p> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with you" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %} |
|
|
|
{% if name_you %}{{ name_you }}{% else %}You{% endif %} |
|
|
|
</label> |
|
|
|
<p>Child lives primarily (more than 60%) with this parent</p> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with spouse" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %} |
|
|
|
{% if name_spouse %}{{ name_spouse }}{% else %}Your spouse{% endif %} |
|
|
|
</label> |
|
|
|
<p>Child lives primarily (more than 60%) with this parent</p> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with both" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %} |
|
|
|
Both/Shared |
|
|
|
{% if name_you %}{{ name_you }}{% else %}you{% endif %} and |
|
|
|
{% if name_spouse %}{{ name_spouse }}{% else %}your spouse{% endif %} |
|
|
|
</label> |
|
|
|
<p>The child live with both parents more or less equally (between 40-60% of the time with each |
|
|
|
parent)</p> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="radio"> |
|
|
|
<label> |
|
|
|
{% input_field type="radio" class="radio-with-other radio-with-textbox children-input-block" name="child_live_with" value="Other" data_target_id="other_child_details" data_reveal_target="true" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %} |
|
|
|
Other |
|
|
|
{% input_field type="textarea" class="response-textbox other-textbox input-inline children-input-block" name="child_live_with_other_details" id="other_child_details" maxlength="500" rows="3" tabindex="-1" hidden="" data_mirror="true" data_mirror_target="#child_live_with_other_details_0" data_skip_ajax="true" %} |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label> |
|
|
|
{% input_field type="radio" class="radio-with-other radio-with-textbox children-input-block" name="child_live_with" value="Other" data_target_id="other_child_details" data_reveal_target="true" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %} |
|
|
|
Other |
|
|
|
{% input_field type="textarea" class="response-textbox other-textbox input-inline children-input-block" name="child_live_with_other_details" id="other_child_details" maxlength="500" rows="3" tabindex="-1" hidden="" data_mirror="true" data_mirror_target="#child_live_with_other_details_0" data_skip_ajax="true" %} |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" |
|
|
|
data-target="#collapseChildLivingOptions" aria-controls="collapseChildLivingOptions"> |
|
|
|
<div> |
|
|
|
Which option applies if my child is living away from home attending school? |
|
|
|
</div> |
|
|
|
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" |
|
|
|
data-target="#collapseChildLivingOptions" aria-controls="collapseChildLivingOptions"> |
|
|
|
<div> |
|
|
|
Which option applies if my child is living away from home attending school? |
|
|
|
</div> |
|
|
|
<div class="collapse" id="collapseChildLivingOptions"> |
|
|
|
<div> |
|
|
|
<p> |
|
|
|
If the child is a dependent living away from home much of the year to attend school, select |
|
|
|
the parent with whom the child primarily lives when he/she returns home. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="collapse" id="collapseChildLivingOptions"> |
|
|
|
<div> |
|
|
|
<p> |
|
|
|
If the child is a dependent living away from home much of the year to attend school, select |
|
|
|
the parent with whom the child primarily lives when he/she returns home. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="question-well"> |
|
|
|
<h3> |
|
|
|
What is your current parenting arrangement for child (insert name previously entered)? |
|
|
|
</h3> |
|
|
|
<p>The type of parenting arrangement you have can affect the way you calculate child support under the |
|
|
|
<a href="http://www.justice.gc.ca/eng/rp-pr/fl-lf/child-enfant/guide/step6-etap6.html" target="_blank"> |
|
|
|
Federal Guidelines. |
|
|
|
</a> |
|
|
|
<div class="question-well"> |
|
|
|
<h3> |
|
|
|
What is your current parenting arrangement for child (insert name previously entered)? |
|
|
|
</h3> |
|
|
|
<p>The type of parenting arrangement you have can affect the way you calculate child support under the |
|
|
|
<a href="http://www.justice.gc.ca/eng/rp-pr/fl-lf/child-enfant/guide/step6-etap6.html" target="_blank"> |
|
|
|
Federal Guidelines. |
|
|
|
</a> |
|
|
|
</p> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Sole custody" data_mirror="true" data_mirror_target="#child_custody_0" data_skip_ajax="true" %} |
|
|
|
Sole custody |
|
|
|
</label> |
|
|
|
<p> |
|
|
|
Your child spends more than 60 percent of their time with one of you over the course of a year |
|
|
|
</p> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Sole custody" data_mirror="true" data_mirror_target="#child_custody_0" data_skip_ajax="true" %} |
|
|
|
Sole custody |
|
|
|
</label> |
|
|
|
<p> |
|
|
|
Your child spends more than 60 percent of their time with one of you over the course of a year |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Split" data_mirror="true" data_mirror_target="#child_custody_0" data_skip_ajax="true" %} |
|
|
|
Split |
|
|
|
</label> |
|
|
|
<p> |
|
|
|
You split custody of your children if: |
|
|
|
<ul> |
|
|
|
<li>you have more than one child; and</li> |
|
|
|
<li>you each have sole custody of at least one of the children</li> |
|
|
|
</ul> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Shared/Joint" data_mirror="true" data_mirror_target="#child_custody_0" data_skip_ajax="true" %} |
|
|
|
Shared/Joint |
|
|
|
</label> |
|
|
|
<p> |
|
|
|
You share custody of your children if they spend at least 40 percent of the time with each of you in |
|
|
|
a year |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="question-well"> |
|
|
|
<h3>What is your relationship to this child?</h3> |
|
|
|
<div class="radio"> |
|
|
|
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Natural child" data_mirror="true" data_mirror_target="#child_relationship_you_0" data_skip_ajax="true" %}Natural |
|
|
|
child</label> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Step child" data_mirror="true" data_mirror_target="#child_relationship_you_0" data_skip_ajax="true" %}Step |
|
|
|
child</label> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing">{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Adopted child" data_mirror="true" data_mirror_target="#child_relationship_you_0" data_skip_ajax="true" %}Adopted |
|
|
|
child</label> |
|
|
|
<p> |
|
|
|
Once a child is legally adopted, he or she becomes the child of the adoptive parent(s) for all |
|
|
|
purposes. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" |
|
|
|
data-target="#collapseParentRights" aria-controls="collapseParentRights"> |
|
|
|
<div> |
|
|
|
What are a step-parents' rights and responsibilities? |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Split" data_mirror="true" data_mirror_target="#child_custody_0" data_skip_ajax="true" %} |
|
|
|
Split |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
<div class="collapse" id="collapseParentRights"> |
|
|
|
<div> |
|
|
|
<p> |
|
|
|
You split custody of your children if: |
|
|
|
If you have stepchildren and you separate from their parent, you may want to continue your |
|
|
|
relationship |
|
|
|
with those children. You can try to negotiate an arrangement with the child's parent for you to |
|
|
|
have |
|
|
|
regular contact with the child. The only thing you and the other parent can consider when making |
|
|
|
these |
|
|
|
decisions is the best interests of the child. You can put these arrangements into an agreement |
|
|
|
that the |
|
|
|
two of you write down and sign. |
|
|
|
</p> |
|
|
|
<p>As a step-parent, you may be responsible to pay child support if:</p> |
|
|
|
<ul> |
|
|
|
<li>you have more than one child; and</li> |
|
|
|
<li>you each have sole custody of at least one of the children</li> |
|
|
|
<li>you and the child's parent are or were married or lived common-law for at least two years, |
|
|
|
and |
|
|
|
</li> |
|
|
|
<li>you also lived with the child.</li> |
|
|
|
</ul> |
|
|
|
<p>You aren't responsible to pay child support for stepchildren unless</p> |
|
|
|
<ul> |
|
|
|
<li> |
|
|
|
you contributed to the child's support for at least one year during your relationship with |
|
|
|
the |
|
|
|
child's parent, and |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
the application for support is made within a year of the last time you contributed to the |
|
|
|
child's support. |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing"> |
|
|
|
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Shared/Joint" data_mirror="true" data_mirror_target="#child_custody_0" data_skip_ajax="true" %} |
|
|
|
Shared/Joint |
|
|
|
</label> |
|
|
|
<p> |
|
|
|
You share custody of your children if they spend at least 40 percent of the time with each of you in |
|
|
|
a year |
|
|
|
For more information on |
|
|
|
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/step_parents_rights.php" |
|
|
|
target="_blank">step-parents' rights and responsibilities</a> |
|
|
|
please refer to the Family Law of B.C. website. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="question-well"> |
|
|
|
<h3>What is your relationship to this child?</h3> |
|
|
|
<div class="radio"> |
|
|
|
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Natural child" data_mirror="true" data_mirror_target="#child_relationship_you_0" data_skip_ajax="true" %}Natural |
|
|
|
child</label> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Step child" data_mirror="true" data_mirror_target="#child_relationship_you_0" data_skip_ajax="true" %}Step |
|
|
|
child</label> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing">{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Adopted child" data_mirror="true" data_mirror_target="#child_relationship_you_0" data_skip_ajax="true" %}Adopted |
|
|
|
child</label> |
|
|
|
<p> |
|
|
|
Once a child is legally adopted, he or she becomes the child of the adoptive parent(s) for all |
|
|
|
purposes. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" |
|
|
|
data-target="#collapseParentRights" aria-controls="collapseParentRights"> |
|
|
|
<div> |
|
|
|
What are a step-parents' rights and responsibilities? |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="collapse" id="collapseParentRights"> |
|
|
|
<div> |
|
|
|
<p> |
|
|
|
If you have stepchildren and you separate from their parent, you may want to continue your |
|
|
|
relationship |
|
|
|
with those children. You can try to negotiate an arrangement with the child's parent for you to |
|
|
|
have |
|
|
|
regular contact with the child. The only thing you and the other parent can consider when making |
|
|
|
these |
|
|
|
decisions is the best interests of the child. You can put these arrangements into an agreement |
|
|
|
that the |
|
|
|
two of you write down and sign. |
|
|
|
</p> |
|
|
|
<p>As a step-parent, you may be responsible to pay child support if:</p> |
|
|
|
<ul> |
|
|
|
<li>you and the child's parent are or were married or lived common-law for at least two years, |
|
|
|
and |
|
|
|
</li> |
|
|
|
<li>you also lived with the child.</li> |
|
|
|
</ul> |
|
|
|
<p>You aren't responsible to pay child support for stepchildren unless</p> |
|
|
|
<ul> |
|
|
|
<li> |
|
|
|
you contributed to the child's support for at least one year during your relationship with |
|
|
|
the |
|
|
|
child's parent, and |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
the application for support is made within a year of the last time you contributed to the |
|
|
|
child's support. |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
<p> |
|
|
|
For more information on |
|
|
|
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/step_parents_rights.php" |
|
|
|
target="_blank">step-parents' rights and responsibilities</a> |
|
|
|
please refer to the Family Law of B.C. website. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="question-well"> |
|
|
|
<h3>What is your spouse's relationship to this child?</h3> |
|
|
|
<div class="radio"> |
|
|
|
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Natural child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" data_skip_ajax="true" %}Natural |
|
|
|
child</label> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="question-well"> |
|
|
|
<h3>What is your spouse's relationship to this child?</h3> |
|
|
|
<div class="radio"> |
|
|
|
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Natural child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" data_skip_ajax="true" %}Natural |
|
|
|
child</label> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Step child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" data_skip_ajax="true" %}Step |
|
|
|
child</label> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing">{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Adopted child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" data_skip_ajax="true" %}Adopted |
|
|
|
child</label> |
|
|
|
<p> |
|
|
|
Once a child is legally adopted, he or she becomes the child of the adoptive parent(s) for all |
|
|
|
purposes. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Step child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" data_skip_ajax="true" %}Step |
|
|
|
child</label> |
|
|
|
</div> |
|
|
|
<div class="radio"> |
|
|
|
<label class="tight-spacing">{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Adopted child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" data_skip_ajax="true" %}Adopted |
|
|
|
child</label> |
|
|
|
<p> |
|
|
|
Once a child is legally adopted, he or she becomes the child of the adoptive parent(s) for all |
|
|
|
purposes. |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<span class="form-group"> |
|
|
|
<input type="button" id="btn_save_child" class="btn btn-success" name="claimant_children" value="Save Child"/> |
|
|
|
<input type="button" id="btn_add_child" class="btn btn-success" value="Add Child"/> |
|
|
|
</span> |
|
|
|
<span class="form-buttons clearfix"> |
|
|
|
<a class="btn btn-primary" href="#" id="btn_save_child" name="claimant_children"> |
|
|
|
<i class="fa fa-floppy-o"></i>  Save Child |
|
|
|
</a> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div id="questions_modal" class="modal" tabindex="-1" role="dialog"> |
|
|
|
|