Skip to content

Commit

Permalink
Merge pull request #673 from bcgov/shaun-dev
Browse files Browse the repository at this point in the history
merge fix for logout screen display
  • Loading branch information
suzalflueck authored Nov 1, 2024
2 parents f95d64f + 6bb8801 commit cdfdc75
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions frontend/src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
valid IDIR.
</v-card-text>
<v-card-actions>
<v-btn color="primary" variant="text" href="authRoutes.LOGIN">
<a :href="authRoutes.LOGIN">Login</a>
<v-btn color="primary" variant="text" :href="authRoutes.LOGIN">
Login
</v-btn>
</v-card-actions>
</v-card>
Expand Down
26 changes: 14 additions & 12 deletions frontend/src/views/Logout.vue
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
<template>
<v-container fluid class="full-height">
<v-row align="center">
<v-col cols="10" sm="10" md="8" lg="4" xl="3">
<v-card class="session-expired-card">
<v-card-title class="gov-header">
<v-row>
<v-spacer />
<v-col cols="12" md="4" lg="4">
<v-card class="pt-3 pb-4">
<v-card-title>
<h4 id="logout_text">Logged Out</h4>
</v-card-title>
<v-card-text id="logout_descriptor">
<v-row style="margin: 0.3rem">You have Logged out.</v-row>
You have Logged out of the Graduation Administration Application.
</v-card-text>
<v-card-actions>
<v-btn
@click="clearStorage"
:href="Routes.LOGIN"
class="ma-1"
dark
color="#003366"
>Log In</v-btn
variant="text"
:href="routes.LOGIN"
color="primary"
>Login</v-btn
>
<span>&nbsp;again if you wish to continue.</span>
</v-card-text>
</v-card-actions>
</v-card>
</v-col>
<v-spacer />
</v-row>
</v-container>
</template>
Expand Down

0 comments on commit cdfdc75

Please sign in to comment.