Skip to content
Snippets Groups Projects
Commit 0c92dd98 authored by Agate's avatar Agate :speech_balloon:
Browse files

Merge branch 'logout-page-fix' into 'develop'

Add support for unauthenticated users hitting the logout page

See merge request !1168
parents 15369155 f3c522d5
No related branches found
No related tags found
No related merge requests found
Add support for unauthenticated users hitting the logout page
\ No newline at end of file
<template> <template>
<main class="main pusher" v-title="labels.title"> <main class="main pusher" v-title="labels.title">
<section class="ui vertical stripe segment"> <section class="ui vertical stripe segment">
<div class="ui small text container"> <div v-if="$store.state.auth.authenticated" class="ui small text container">
<h2> <h2>
<translate translate-context="Content/Login/Title">Are you sure you want to log out?</translate> <translate translate-context="Content/Login/Title">Are you sure you want to log out?</translate>
</h2> </h2>
<p v-translate="{username: $store.state.auth.username}" translate-context="Content/Login/Paragraph">You are currently logged in as %{ username }</p> <p v-translate="{username: $store.state.auth.username}" translate-context="Content/Login/Paragraph">You are currently logged in as %{ username }</p>
<button class="ui button" @click="$store.dispatch('auth/logout')"><translate translate-context="Content/Login/Button.Label">Yes, log me out!</translate></button> <button class="ui button" @click="$store.dispatch('auth/logout')"><translate translate-context="Content/Login/Button.Label">Yes, log me out!</translate></button>
</div> </div>
<div v-else class="ui small text container">
<h2>
<translate translate-context="Content/Login/Title">You aren't currently logged in</translate>
</h2>
<router-link to='/login' class="ui button"><translate translate-context="Content/Login/Button.Label">Log in!</translate></router-link>
</div>
</section> </section>
</main> </main>
</template> </template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment