|
| 1 | +<template> |
| 2 | + <v-container> |
| 3 | + <Breadcrumb /> |
| 4 | + <v-row> |
| 5 | + <v-col> |
| 6 | + <h1>Check if you are eligible to apply with international certification</h1> |
| 7 | + </v-col> |
| 8 | + </v-row> |
| 9 | + |
| 10 | + <v-row> |
| 11 | + <v-col> |
| 12 | + <ECEHeader title="International certification" /> |
| 13 | + <p>Your certificates(s) must:</p> |
| 14 | + <ul class="ml-10"> |
| 15 | + <li>Be issued by a country or region that regulates the early childhood education profession</li> |
| 16 | + <li>Be in good standing</li> |
| 17 | + <li>Be valid (you can provide expired certification, but you must also provide at least one valid certification)</li> |
| 18 | + </ul> |
| 19 | + </v-col> |
| 20 | + </v-row> |
| 21 | + <v-row> |
| 22 | + <v-col> |
| 23 | + <ECEHeader title="Employment experience" /> |
| 24 | + <p> |
| 25 | + You need to have completed 2 years of independent ECE practice and be able to provide references to verify your employment experience. If you worked |
| 26 | + at multiple locations, you can provide multiple references. |
| 27 | + </p> |
| 28 | + </v-col> |
| 29 | + </v-row> |
| 30 | + <v-row> |
| 31 | + <v-col> |
| 32 | + <p>Important information about employment experience:</p> |
| 33 | + <ul class="ml-10"> |
| 34 | + <li>Only include employment experience completed within the last 5 years</li> |
| 35 | + <li>Must have held valid ECE certification at the time the employment experience was completed</li> |
| 36 | + </ul> |
| 37 | + </v-col> |
| 38 | + </v-row> |
| 39 | + <v-row> |
| 40 | + <v-col> |
| 41 | + <!-- prettier-ignore --> |
| 42 | + <p> |
| 43 | + If you do not meet these requirements, you can |
| 44 | + <a href="/">apply for certification through another pathway</a>. |
| 45 | + </p> |
| 46 | + </v-col> |
| 47 | + </v-row> |
| 48 | + <v-row> |
| 49 | + <v-col> |
| 50 | + <v-btn class="mt-6" rounded="lg" color="primary" @click="router.push({ name: 'not-found' })" id="btnContinue">Continue (not implemented)</v-btn> |
| 51 | + </v-col> |
| 52 | + </v-row> |
| 53 | + </v-container> |
| 54 | +</template> |
| 55 | + |
| 56 | +<script> |
| 57 | +import Breadcrumb from "@/components/Breadcrumb.vue"; |
| 58 | +import ECEHeader from "@/components/ECEHeader.vue"; |
| 59 | +import { useRouter } from "vue-router"; |
| 60 | +
|
| 61 | +export default { |
| 62 | + name: "IcraEligibilityRequirements", |
| 63 | + components: { Breadcrumb, ECEHeader }, |
| 64 | + setup() { |
| 65 | + const router = useRouter(); |
| 66 | +
|
| 67 | + return { router }; |
| 68 | + }, |
| 69 | +}; |
| 70 | +</script> |
0 commit comments