forked from bcgov/bcregistry
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
10795 Implement login page and logout redirects (bcgov#49)
* - implemented login page - set logout URL in misc pages - redirect to logout URL after signout - don't fetch org or load products if account sync timed out - updated sbc-common-components import - fixed a header layout issue - fixed footer hover style - moved static images - misc cleanup - app version = 1.0.10 * - hide component errors
- Loading branch information
1 parent
157fdce
commit f69b946
Showing
25 changed files
with
303 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,14 +49,14 @@ | |
</template> | ||
|
||
<script lang="ts"> | ||
export default { | ||
data () { | ||
return { | ||
BCROS_HREF: 'https://www2.gov.bc.ca/gov/content/governments/organizational-structure/' + | ||
'ministries-organizations/ministries/citizens-services/bc-registries-online-services', | ||
MAILTO_HREF: 'mailto:[email protected]?subject=BC%20Registries%20Support%20Request', | ||
} | ||
}, | ||
import { Component, Vue } from 'vue-property-decorator' | ||
@Component({}) | ||
export default class ContactInfoBcros extends Vue { | ||
readonly BCROS_HREF = 'https://www2.gov.bc.ca/gov/content/governments/organizational-structure/' + | ||
'ministries-organizations/ministries/citizens-services/bc-registries-online-services' | ||
readonly MAILTO_HREF = 'mailto:[email protected]?subject=BC%20Registries%20Support%20Request' | ||
} | ||
</script> | ||
|
||
|
@@ -80,7 +80,7 @@ export default { | |
font-size: $px-20; | ||
} | ||
a { | ||
a, a:hover { | ||
color: inherit; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,14 +45,14 @@ | |
</template> | ||
|
||
<script lang="ts"> | ||
export default { | ||
data () { | ||
return { | ||
PPR_HREF: 'https://www2.gov.bc.ca/gov/content/employment-business/business/managing-a-business/' + | ||
'bc-registry-services-personal-property-registry', | ||
MAILTO_HREF: 'mailto:[email protected]?subject=Personal%20Property%20Registry%20Support%20Request', | ||
} | ||
}, | ||
import { Component, Vue } from 'vue-property-decorator' | ||
@Component({}) | ||
export default class ContactInfoPpr extends Vue { | ||
readonly PPR_HREF = 'https://www2.gov.bc.ca/gov/content/employment-business/business/managing-a-business/' + | ||
'bc-registry-services-personal-property-registry' | ||
readonly MAILTO_HREF: 'mailto:[email protected]?subject=Personal%20Property%20Registry%20Support%20Request' | ||
} | ||
</script> | ||
|
||
|
@@ -76,7 +76,7 @@ export default { | |
font-size: $px-20; | ||
} | ||
a { | ||
a, a:hover { | ||
color: inherit; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.