Add create account functionality
This commit is contained in:
parent
598b9fd7d6
commit
8ef4636635
8 changed files with 145 additions and 12 deletions
|
@ -1,7 +1,9 @@
|
|||
<template>
|
||||
<main>
|
||||
<h1>Account Settings</h1>
|
||||
<p>Name: {{ session?.account.name }}</p>
|
||||
<p v-if="session?.account.type !== 'anonymous'">
|
||||
Name: {{ session?.account.name }}
|
||||
</p>
|
||||
<p>Access: {{ session?.account.type }}</p>
|
||||
<p>
|
||||
<PushNotification />
|
||||
|
@ -37,9 +39,3 @@ async function deleteAccount() {
|
|||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
fieldset {
|
||||
width: fit-content;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue