-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |