Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

shaun-dev #673

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading