1
0
forked from PGL/Clyde

Indicated that you are logged by coloring the icon in orange and disconnect if clicked on it

This commit is contained in:
2024-03-16 13:56:29 +01:00
parent 847936b799
commit 04f64f505e
3 changed files with 20 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<script setup>
import { ref } from 'vue'
import i18n from '@/i18n.js'
import { login , register } from '@/rest/Users.js'
import { login , register, disconnect } from '@/rest/Users.js'
import { uploadProfilePicture } from '@/rest/uploads.js'
const loginPage= ref(true)
@ -20,6 +20,9 @@
const imageSaved = ref(false)
const ppData = ref(false)
disconnect()
</script>