Browse Source

Refactored uploader content & implemented more styling

pull/170/head
Michael Olund 5 years ago
parent
commit
2399d8a735
5 changed files with 285 additions and 199 deletions
  1. +6
    -0
      vue/src/components/ItemTile.vue
  2. +69
    -18
      vue/src/components/Uploader.vue
  3. +139
    -145
      vue/src/pages/final-filing/FinalFiling.vue
  4. +24
    -36
      vue/src/pages/initial-filing/InitialFiling.vue
  5. +47
    -0
      vue/src/utils/forms.js

+ 6
- 0
vue/src/components/ItemTile.vue View File

@ -58,6 +58,8 @@ export default {
max-height: 75px;
overflow: hidden;
padding: 5px;
line-height: 1.05;
font-size: 0.95em;
}
.button-wrapper {
@ -94,6 +96,10 @@ export default {
margin-right: 0;
}
&:nth-of-type(2) {
margin-right: 32px;
}
&.btn-remove {
position: absolute;
top: 125px;


+ 69
- 18
vue/src/components/Uploader.vue View File

@ -1,5 +1,15 @@
<template>
<div>
<h5 class="uploader-label">
{{ formInfo.preText }} <a href="#">{{ formInfo.name }} <i class="fa fa-question-circle"></i></a>
<strong v-if="party === 1"> - For You</strong>
<strong v-if="party === 2"> - For Your Spouse</strong>
</h5>
<label :for="inputId" class="sr-only">
{{ formInfo.preText }} {{ formInfo.name }}
<span v-if="party === 1"> - For You</span>
<span v-if="party === 2"> - For Your Spouse</span>
</label>
<div @dragover="draggingOn" @dragenter="draggingOn" @dragleave="draggingOff" @dragend="draggingOff" @drop="draggingOff">
<file-upload
ref="upload"
@ -11,23 +21,28 @@
put-action="/put.method"
@input-file="inputFile"
@input-filter="inputFilter"
:class="['drop-zone', dragging ? 'dragging' : '']"
>
:input-id="inputId"
:class="['drop-zone', dragging ? 'dragging' : '']">
<div v-if="files.length === 0" class="placeholder">
<i class="fa fa-plus-circle"></i><br>
<em>Drag and Drop the PDF document or JPG pages here,<br>or click here to Browse for files.</em>
<i class="fa fa-plus-circle"></i><br>
<em>Drag and Drop the PDF document or JPG pages here,<br>or click here to Browse for files.</em>
</div>
<div v-else class="items">
<div v-for="(file, index) in files" v-bind:key="index" class="item">
<item-tile
:file="file"
:index="index"
:file-count="files.length"
@remove="remove(file)"
@moveup="moveUp(index)"
@movedown="moveDown(index)"/>
</div>
</div>
<div v-for="(file, index) in files" v-bind:key="index" class="item">
<item-tile
:file="file"
:index="index"
:file-count="files.length"
@remove="remove(file)"
@moveup="moveUp(index)"
@movedown="moveDown(index)"/>
</div>
<div class="item upload-button">
<div class="upload-button-wrapper">
<i class="fa fa-plus-circle"></i>
</div>
</div>
</div>
</file-upload>
</div>
</div>
@ -36,10 +51,11 @@
<script>
import VueUploadComponent from 'vue-upload-component'
import ItemTile from './ItemTile'
import Forms from "../utils/forms";
export default {
props: {
type: String,
docType: String,
party: { type: Number, default: 0 }
},
data: function () {
@ -52,6 +68,18 @@ export default {
FileUpload: VueUploadComponent,
ItemTile
},
computed: {
inputId() {
if (this.party === 0) {
return "Uploader-" + this.docType;
}
return "Uploader-" + this.docType + this.party;
},
formInfo() {
debugger;
return Forms[this.docType];
}
},
methods: {
/**
* Has changed
@ -118,6 +146,7 @@ export default {
<style scoped lang="scss">
.drop-zone {
background-color: white;
width: 100%;
display: block;
text-align: left;
@ -126,18 +155,27 @@ export default {
padding: 18px;
&.dragging {
background-color: #F2F2F2;
background-color: #F2E3F2;
}
.item {
margin-bottom: 10px;
width: 160px;
display: inline-block;
margin-right: 20px;
margin-right: 18px;
&.upload-button {
width: 15px;
.upload-button-wrapper {
position: relative;
top: -110px;
}
}
}
.fa-plus-circle {
font-size: 2rem;
font-size: 3rem;
margin-bottom: 8px;
color: #365EBE;
}
@ -146,4 +184,17 @@ export default {
text-align: center;
}
}
h5.uploader-label {
display: block;
margin-top: 12px;
margin-bottom: 8px;
font-weight: normal;
font-size: 1em;
a {
font-weight: bold;;
}
}
</style>

+ 139
- 145
vue/src/pages/final-filing/FinalFiling.vue View File

@ -1,173 +1,161 @@
<template>
<div id="app">
<div class="question-well-border-less" v-if="signingLocation === 'Virtual'">
<div>
<!-- CSA - Child Support Affidavit -->
<Uploader doc-type="CSA"/>
</div>
<div>
<!-- AFDO - Affidavit - Desk Order Divorce -->
<Uploader doc-type="AFDO"/>
</div>
</div>
<div class="question-well-border-less" v-else-if="signingLocationYou === 'Virtual' && signingLocationSpouse === 'Virtual'">
<div>
<!-- CSA - Child Support Affidavit -->
<Uploader doc-type="CSA" :party="1"/>
</div>
<div>
<!-- AFDO - Affidavit - Desk Order Divorce -->
<Uploader doc-type="AFDO" :party="1"/>
</div>
<div>
<!-- CSA - Child Support Affidavit -->
<Uploader doc-type="CSA" :party="2"/>
</div>
<div>
<!-- AFDO - Affidavit - Desk Order Divorce -->
<Uploader doc-type="AFDO" :party="2"/>
</div>
</div>
<template v-else-if="howToFile === 'Online'">
<div class="question-well-border-less" v-if="signingLocation.length || (signingLocationYou.length && signingLocationSpouse.length)">
<p>Missing a form required on this page? Check the <a :href="printFormUrl">Review Forms</a> step.</p>
<p>The following forms will be automatically filed for you:</p>
<ul>
<li>Requisition Form (F35)</li>
<li>Certificate of Pleadings Form (F36)</li>
</ul>
<div>
<p>Upload the signed / sworn and scanned Child Support Affidavit (F37)</p>
<!-- CSA - Child Support Affidavit -->
<Uploader doc-type="CSA"/>
<!-- CSA - Child Support Affidavit -->
<Uploader doc-type="CSA"/>
</div>
<div>
<p>Upload the signed / sworn and scanned Affidavit - Desk Order Divorce Form (F38)</p>
<!-- AFDO - Affidavit - Desk Order Divorce -->
<Uploader doc-type="AFDO"/>
<!-- AFDO - Affidavit - Desk Order Divorce -->
<Uploader doc-type="AFDO"/>
</div>
</div>
<div class="question-well-border-less" v-else-if="signingLocationYou === 'Virtual' && signingLocationSpouse === 'Virtual'">
<div>
<p>Upload the signed / sworn and scanned Child Support Affidavit (F37) - For You</p>
<!-- CSA - Child Support Affidavit -->
<Uploader doc-type="CSA" :party="1"/>
<!-- OFI - Final Order -->
<Uploader doc-type="OFI"/>
</div>
<div>
<p>Upload the signed / sworn and scanned Child Support Affidavit (F37) - For Your Spouse</p>
<!-- CSA - Child Support Affidavit -->
<Uploader doc-type="CSA" :party="2"/>
<!-- EFSS - Electronic Filing Statement - Supreme -->
<Uploader doc-type="EFSS"
:party="1"
post-text=" - For You"/>
</div>
<div>
<p>Upload the signed / sworn and scanned Affidavit - Desk Order Divorce Form (F38) - For You</p>
<!-- AFDO - Affidavit - Desk Order Divorce -->
<Uploader doc-type="AFDO" :party="1"/>
<!-- EFSS - Electronic Filing Statement - Supreme -->
<Uploader doc-type="EFSS" :party="2"/>
</div>
<div>
<p>Upload the signed / sworn and scanned Affidavit - Desk Order Divorce Form (F38) - For Your Spouse</p>
<!-- AFDO - Affidavit - Desk Order Divorce -->
<Uploader doc-type="AFDO" :party="2"/>
<!-- AAI - Agreement as to Annual Income -->
<Uploader doc-type="AAI"/>
</div>
</div>
<template v-else-if="howToFile === 'Online'">
<div class="question-well-border-less" v-if="signingLocation.length || (signingLocationYou.length && signingLocationSpouse.length)">
<p>Missing a form required on this page? Check the <a :href="printFormUrl">Review Forms</a> step.</p>
<p>The following forms will be automatically filed for you:</p>
<ul>
<li>Requisition Form (F35)</li>
<li>Certificate of Pleadings Form (F36)</li>
</ul>
<div>
<p>Upload the signed / sworn and scanned Child Support Affidavit (F37)</p>
<!-- CSA - Child Support Affidavit -->
<Uploader doc-type="CSA"/>
</div>
<div>
<p>Upload the signed / sworn and scanned Affidavit - Desk Order Divorce Form (F38)</p>
<!-- AFDO - Affidavit - Desk Order Divorce -->
<Uploader doc-type="AFDO"/>
</div>
<div>
<p>Upload the signed and scanned Draft Final Order Form (F52)</p>
<!-- OFI - Final Order -->
<Uploader doc-type="OFI"/>
</div>
<div>
<p>Upload the signed and scanned Electronic Filing Statement (F96) for You</p>
<!-- EFSS - Electronic Filing Statement - Supreme -->
<Uploader doc-type="EFSS" :party="1"/>
</div>
<div>
<p>Upload the signed and scanned Electronic Filing Statement (F96) for Your Spouse</p>
<!-- EFSS - Electronic Filing Statement - Supreme -->
<Uploader doc-type="EFSS" :party="2"/>
</div>
<div>
<p>Complete, scan and upload the Agreement as to Annual Income (F9) form</p>
<!-- AAI - Agreement as to Annual Income -->
<Uploader doc-type="AAI"/>
</div>
<div>
<p>Complete, scan and upload the Identification of Apppcant (VSA 512) for You</p>
<!-- ??? - Identification of Applicant -->
<Uploader doc-type="???" :party="1"/>
</div>
<div>
<p>Complete, scan and upload the Identification of Apppcant (VSA 512) for Your Spouse</p>
<!-- ??? - Identification of Applicant -->
<Uploader doc-type="???" :party="2"/>
</div>
<div>
<!-- NCV Name Change Form Vital Statistics -->
<Uploader doc-type="NCV" :party="1"/>
</div>
<div class="question-well-border-less" v-else>
<h2>You need to select a signing method in the <a :href="signFileOptionsUrl">Signing & Filing Options</a>
step.</h2>
<div>
<!-- NCV Name Change Form Vital Statistics -->
<Uploader doc-type="NCV" :party="2"/>
</div>
</div>
<div class="question-well-border-less" v-else>
<h2>You need to select a signing method in the <a :href="signFileOptionsUrl">Signing & Filing Options</a>
step.</h2>
</div>
</template>
<template v-else-if="howToSign === 'Together'">
<div>
<p>Staple each form together and then fasten all forms with a paper clip, in the following order:</p>
<ul>
<li>Notice of Joint Family Claim Form (F1)</li>
<li>Requisition Form (F35)</li>
<li>Draft Final Order Form (F52)</li>
<li>Certificate of Pleadings Form (F36)</li>
<li>Child Support Affidavit (F37) signed by claimants</li>
<li>Affidavit Desk Order Divorce (F38) signed by both claimants</li>
<li>Agreement as to Annual Income (F9)</li>
</ul>
<p>Also ensure you bring the following additional documentation:</p>
<ul>
<li>Proof of marriage</li>
<li>Registration of Joint Divorce Proceedings (JUS280)</li>
<li>Identification of Applicant (VSA 512) for Claimant 1 ([Name])</li>
<li>Identification of Applicant (VSA 512) for Claimant 2 ([Name])</li>
<li>Agreement as to Annual Income (F9)</li>
</ul>
<p>If you have other court orders or a written separation agreement, they should also be attached to your Affidavit Desk Order Divorce
Form</p>
<p>(F38). Note that these agreements or orders must not contradict what's in your divorce application.</p>
<p>You have indicated that you will file at the following court registry:</p>
<p>[City]</p>
<p>[Address]</p>
<p>[Postal Code]</p>
<p>Once sign / sworn and filed, you will receive a Court Filing Number <i class="fa fa-question-circle"></i>. This number will be used if you need to file any
additional documentation.</p>
</div>
<div>
<p>Staple each form together and then fasten all forms with a paper clip, in the following order:</p>
<ul>
<li>Notice of Joint Family Claim Form (F1)</li>
<li>Requisition Form (F35)</li>
<li>Draft Final Order Form (F52)</li>
<li>Certificate of Pleadings Form (F36)</li>
<li>Child Support Affidavit (F37) signed by claimants</li>
<li>Affidavit Desk Order Divorce (F38) signed by both claimants</li>
<li>Agreement as to Annual Income (F9)</li>
</ul>
<p>Also ensure you bring the following additional documentation:</p>
<ul>
<li>Proof of marriage</li>
<li>Registration of Joint Divorce Proceedings (JUS280)</li>
<li>Identification of Applicant (VSA 512) for Claimant 1 ([Name])</li>
<li>Identification of Applicant (VSA 512) for Claimant 2 ([Name])</li>
<li>Agreement as to Annual Income (F9)</li>
</ul>
<p>If you have other court orders or a written separation agreement, they should also be attached to your Affidavit Desk Order Divorce
Form</p>
<p>(F38). Note that these agreements or orders must not contradict what's in your divorce application.</p>
<p>You have indicated that you will file at the following court registry:</p>
<p>[City]</p>
<p>[Address]</p>
<p>[Postal Code]</p>
<p>Once sign / sworn and filed, you will receive a Court Filing Number <i class="fa fa-question-circle"></i>. This number will be used if you need to file any
additional documentation.</p>
</div>
</template>
<template v-else-if="howToSign === 'Separately'">
<div class="question-well-border-less">
<p>Staple each form together and then fasten all forms with a paper clip, in the following order:</p>
<ul>
<li> Notice of Joint Family Claim Form (F1)</li>
<li> Requisition Form (F35)</li>
<li> Draft Final Order Form (F52)</li>
<li> Certificate of Pleadings Form (F36)</li>
<li> Child Support Affidavit (F37) signed by you</li>
<li> Affidavit Desk Order Divorce (F38) signed by you</li>
<li> Agreement as to Annual Income (F9)</li>
</ul>
<br>
<p>Also ensure you bring the following additional documentation:</p>
<ul>
<li> Proof of marriage</li>
<li> Registration of Joint Divorce Proceedings (JUS280)</li>
<li> Identification of Applicant (VSA 512) for Claimant 1 ([Name])</li>
<li> Agreement as to Annual Income (F9)</li>
</ul>
<p>If you have other court orders or a written separation agreement, they should also be attached to your Affidavit Desk Order Divorce
Form</p>
<p>(F38). Note that these agreements or orders must not contradict what's in your divorce application.</p>
<p>You have indicated that you will file at the following court registry:</p>
<p>[City]</p>
<p>[Address]</p>
<p>[Postal Code]</p>
<p>Once sign / sworn and filed, you will receive a Court Filing Number <i class="fa fa-question-circle"></i>. This number will be used if you need to file any
additional documentation.</p>
<h2>Spousal Documentation Requirements</h2>
<p>The following sworn / affirmed affidavits still remains to be filed:</p>
<ul>
<li> Child Support Affidavit (F37) - signed by your spouse</li>
<li> Affidavit - Desk Order Divorce Form (F38) - signed by your spouse</li>
<li> Identification of Applicant (VSA 512) - for your Spouse</li>
</ul>
<p>Either you or your spouse must file this documentation using the Court Filing Number <i class="fa fa-question-circle"></i> that you received via e-mail. If you have
not received a Court Filing Number then please check to the Wait for Court Filing Number step.</p>
<p>You have indicated that you will file at the following court registry:</p>
<p>[City]</p>
<p>[Address]</p>
<p>[Postal Code]</p>
</div>
<div class="question-well-border-less">
<p>Staple each form together and then fasten all forms with a paper clip, in the following order:</p>
<ul>
<li> Notice of Joint Family Claim Form (F1)</li>
<li> Requisition Form (F35)</li>
<li> Draft Final Order Form (F52)</li>
<li> Certificate of Pleadings Form (F36)</li>
<li> Child Support Affidavit (F37) signed by you</li>
<li> Affidavit Desk Order Divorce (F38) signed by you</li>
<li> Agreement as to Annual Income (F9)</li>
</ul>
<br>
<p>Also ensure you bring the following additional documentation:</p>
<ul>
<li> Proof of marriage</li>
<li> Registration of Joint Divorce Proceedings (JUS280)</li>
<li> Identification of Applicant (VSA 512) for Claimant 1 ([Name])</li>
<li> Agreement as to Annual Income (F9)</li>
</ul>
<p>If you have other court orders or a written separation agreement, they should also be attached to your Affidavit Desk Order Divorce
Form</p>
<p>(F38). Note that these agreements or orders must not contradict what's in your divorce application.</p>
<p>You have indicated that you will file at the following court registry:</p>
<p>[City]</p>
<p>[Address]</p>
<p>[Postal Code]</p>
<p>Once sign / sworn and filed, you will receive a Court Filing Number <i class="fa fa-question-circle"></i>. This number will be used if you need to file any
additional documentation.</p>
<h2>Spousal Documentation Requirements</h2>
<p>The following sworn / affirmed affidavits still remains to be filed:</p>
<ul>
<li> Child Support Affidavit (F37) - signed by your spouse</li>
<li> Affidavit - Desk Order Divorce Form (F38) - signed by your spouse</li>
<li> Identification of Applicant (VSA 512) - for your Spouse</li>
</ul>
<p>Either you or your spouse must file this documentation using the Court Filing Number <i class="fa fa-question-circle"></i> that you received via e-mail. If you have
not received a Court Filing Number then please check to the Wait for Court Filing Number step.</p>
<p>You have indicated that you will file at the following court registry:</p>
<p>[City]</p>
<p>[Address]</p>
<p>[Postal Code]</p>
</div>
</template>
</div>
</template>
<script>
import Uploader from '../../components/Uploader.vue'
import Uploader from '../../components/Uploader.vue';
export default {
name: 'App',
@ -186,5 +174,11 @@ export default {
}
</script>
<style>
<style scoped lang="scss">
.question-well-border-less {
padding: 10px 20px 30px 20px;
background-color: #F2F2F2;
border: 1px solid #DDD;
border-radius: 6px;
}
</style>

+ 24
- 36
vue/src/pages/initial-filing/InitialFiling.vue View File

@ -6,18 +6,15 @@
<p>The Notice of Joint Family Claim Form (F1) will be automatically filed for you.</p>
</div>
<div>
<p>Upload a scan of your Proof of Marriage <i class="fa fa-question-circle"></i></p>
<!-- MC - Marriage Certificate -->
<Uploader doc-type="MC"/>
</div>
<div>
<p>Scan and upload the sworn Affidavit of Interpreter Form <i class="fa fa-question-circle"></i></p>
<!-- AFTL - Affidavit of Translator -->
<Uploader doc-type="AFTL"/>
</div>
<div>
<p>Complete, scan and upload the Registration of Divorce Proceedings <i class="fa fa-question-circle"></i> form</p>
<!-- RDP - Registration of Divorce Proceeding -->
<!-- RDP - Registration of Divorce Proceeding -->
<Uploader doc-type="RDP"/>
</div>
</div>
@ -37,39 +34,32 @@
</ul>
<div class="question-well-border-less">
<div>
<p>Upload a scan of your Proof of Marriage <i class="fa fa-question-circle"></i></p>
<!-- MC - Marriage Certificate -->
<!-- MC - Marriage Certificate -->
<Uploader doc-type="MC"/>
</div>
<div>
<p>Scan and upload the sworn Affidavit of Interpreter Form <i class="fa fa-question-circle"></i></p>
<!-- AFTL - Affidavit of Translator -->
<!-- AFTL - Affidavit of Translator -->
<Uploader doc-type="AFTL"/>
</div>
<div>
<p>Upload the signed and scanned Draft Final Order Form (F52)</p>
<!-- OFI - Final Order -->
<Uploader doc-type="OFI"/>
</div>
<div>
<p>Upload the signed and scanned Electronic Filing Statement (F96) for You</p>
<!-- EFSS - Electronic Filing Statement - Supreme -->
<!-- EFSS - Electronic Filing Statement - Supreme -->
<Uploader doc-type="EFSS" :party="1"/>
</div>
<div>
<p>Complete, scan and upload the Registration of Divorce Proceedings form</p>
<!-- RDP - Registration of Divorce Proceeding -->
<!-- RDP - Registration of Divorce Proceeding -->
<Uploader doc-type="RDP"/>
</div>
<div>
<p>Complete, scan and upload the Agreement as to Annual Income (F9) form</p>
<!-- AAI - Agreement as to Annual Income -->
<Uploader doc-type="AAI"/>
</div>
<div>
<p>Complete, scan and upload the Identification of Applicant (VSA 512) for You</p>
<!-- ??? - Identification of Applicant -->
<Uploader doc-type="???" :party="1"/>
<!-- NCV Name Change Form Vital Statistics -->
<Uploader doc-type="NCV" :party="1"/>
</div>
</div>
</div>
@ -89,49 +79,40 @@
</ul>
<div class="question-well-border-less">
<div>
<p>Upload a scan of your Proof of Marriage <i class="fa fa-question-circle"></i></p>
<!-- MC - Marriage Certificate -->
<!-- MC - Marriage Certificate -->
<Uploader doc-type="MC"/>
</div>
<div>
<p>Scan and upload the sworn Affidavit of Interpreter Form <i class="fa fa-question-circle"></i></p>
<!-- AFTL - Affidavit of Translator -->
<!-- AFTL - Affidavit of Translator -->
<Uploader doc-type="AFTL"/>
</div>
<div>
<p>Upload the signed and scanned Draft Final Order Form (F52)</p>
<!-- OFI - Final Order -->
<Uploader doc-type="OFI"/>
</div>
<div>
<p>Upload the signed and scanned Electronic Filing Statement (F96) for You</p>
<!-- EFSS - Electronic Filing Statement - Supreme -->
<!-- EFSS - Electronic Filing Statement - Supreme -->
<Uploader doc-type="EFSS" :party="1"/>
</div>
<div>
<p>Upload the signed and scanned Electronic Filing Statement (F96) for Your Spouse</p>
<!-- EFSS - Electronic Filing Statement - Supreme -->
<Uploader doc-type="EFSS" :party="2"/>
</div>
<div>
<p>Complete, scan and upload the Registration of Divorce Proceedings form</p>
<!-- RDP - Registration of Divorce Proceeding -->
<!-- RDP - Registration of Divorce Proceeding -->
<Uploader doc-type="RDP"/>
</div>
<div>
<p>Complete, scan and upload the Agreement as to Annual Income (F9) form</p>
<!-- AAI - Agreement as to Annual Income -->
<Uploader doc-type="AAI"/>
</div>
<div>
<p>Complete, scan and upload the Identification of Applicant (VSA 512) for You</p>
<!-- ??? - Identification of Applicant -->
<Uploader doc-type="???" :party="1"/>
<!-- NCV Name Change Form Vital Statistics -->
<Uploader doc-type="NCV" :party="1"/>
</div>
<div>
<p>Complete, scan and upload the Identification of Applicant (VSA 512) for Your Spouse</p>
<!-- ??? - Identification of Applicant -->
<Uploader doc-type="???" :party="2"/>
<!-- NCV Name Change Form Vital Statistics -->
<Uploader doc-type="NCV" :party="2"/>
</div>
</div>
</div>
@ -140,7 +121,8 @@
</template>
<script>
import Uploader from '../../components/Uploader.vue'
import Uploader from '../../components/Uploader.vue';
import Forms from "../../utils/forms";
export default {
name: 'App',
@ -155,5 +137,11 @@ export default {
}
</script>
<style>
<style scoped lang="scss">
.question-well-border-less {
padding: 10px 20px 30px 20px;
background-color: #F2F2F2;
border: 1px solid #DDD;
border-radius: 6px;
}
</style>

+ 47
- 0
vue/src/utils/forms.js View File

@ -0,0 +1,47 @@
export default {
"AAI": {
name: "Agreement as to Annual Income (F9)",
preText: "Complete, scan and upload the",
help: "This form is used if both you and your spouse agree on the income of the person who will be paying child support. It is used instead of a Financial Statement (F8) if you need to provide the court with proof of income. - Does not require signatures."
},
"AFDO": {
name: "Affidavit - Desk Order Divorce Form (F38)",
preText: "Upload the sworn/affirmed and scanned",
help: "This form sets out all the facts of your marriage and separation for the court and gives information about parenting time if you have children. - Required swearing/affirming and signatures by both you and your spouse in front of a commissioner."
},
"AFTL": {
name:"Affidavit of Interpreter Form",
preText:"Scan and upload the sworn",
help:"HELP TEXT MISSING FROM WIREFRAMES."
},
"CSA": {
name:"Child Support Affidavit (F37)",
preText:"Upload the sworn/affirmed and scanned",
help:"This form gives facts about your children and child support, including the order you're asking the court for. You must also attach your separation agreement or court orders about children to this form as exhibits. - Required swearing/affiming and signatures by both you and your spouse in front of a commissioner."
},
"EFSS": {
name: "Electronic Filing Statement (F96)",
preText: "Upload the signed and scanned",
help: "This form is used to confirm that the document you are filing electronically shows your original signature and is a true copy of the original paper version of the document. - Requires signature by both you and your spouse (but not a signature in front of a commissioner)"
},
"MC": {
name:"Proof of Marriage",
preText:"Upload a scan of your",
help:"To get a divorce, you need an original marriage certificate or certified true copy of your registration of marriage to prove you are married. There are other options described in this tool if you can't get a copy of your marriage certificate or registration of marriage. - Does not require signatures."
},
"NCV": {
name: "Identification of Applicant (VSA 512)",
preText: "Complete, scan and upload the",
help: "This form is used by the Court to notify Vital Statistics of court-ordered legal changes of name. - Does not require signatures."
},
"OFI": {
name: "Draft Final Order Form (F52)",
preText: "Upload the signed and scanned",
help: "This will be your divorce order once the judge has signed it. It sets out the court order. - Requires signature by both you and your spouse (but not a signature in front of a commissioner)"
},
"RDP": {
name: "Registration of Joint Divorce Proceedings (JUS280)",
preText: "Complete, scan and upload the",
help: "This form is for a central divorce registry in Ottawa. They use the form to check to make sure there is no other divorce proceeding pending in Canada. They also keep track of all divorces in Canada. - Does not require signatures."
}
};

Loading…
Cancel
Save