Skip to content

Commit

Permalink
Implement delete account tab
Browse files Browse the repository at this point in the history
  • Loading branch information
samaradel committed Dec 22, 2024
1 parent 791071f commit 81fcd11
Showing 1 changed file with 26 additions and 5 deletions.
31 changes: 26 additions & 5 deletions client/src/views/tabs/DeleteAccount.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
<template lang="">
<div></div>
<template>
<v-container>
<h5 class="text-h5 text-md-h6 font-weight-bold">Delete Account</h5>
<v-row>
<v-col cols="12">
<p>
Permanently delete your account and all associated data. This action
cannot be undone.
</p>
</v-col>
</v-row>
<v-divider class="my-5" />
<v-row class="d-flex justify-end">
<BaseButton
@click="deleteAccount"
text="Delete Account"
color="error"
class="ma-2"
/>
</v-row>
</v-container>
</template>
<script>
export default {};
<script setup>
import BaseButton from "@/components/Form/BaseButton.vue";
// TODO
function deleteAccount() {}
</script>
<style lang=""></style>

0 comments on commit 81fcd11

Please sign in to comment.