computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
480 B
18 lines
480 B
2 years ago
|
---
|
||
|
import Popup from '../Popup/Popup.astro';
|
||
|
import { DeleteAccountForm } from './DeleteAccountForm';
|
||
|
---
|
||
|
|
||
|
<Popup id='delete-account-popup' title='Delete Account' subtitle=''>
|
||
|
<div class='-mt-2.5'>
|
||
|
<p>
|
||
|
This will permanently delete your account and all your associated data
|
||
|
including your progress.
|
||
|
</p>
|
||
|
|
||
|
<p class="text-black font-medium -mb-2 mt-3 text-base">Please type "delete" to confirm.</p>
|
||
|
|
||
|
<DeleteAccountForm client:only />
|
||
|
</div>
|
||
|
</Popup>
|