Last active
May 16, 2020 16:06
-
-
Save FarazPatankar/3453ad861acf5eff11bbee5a125d3937 to your computer and use it in GitHub Desktop.
Simple Action Panel
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
<div class="flex flex-col bg-white py-3 px-5 rounded-lg shadow-md max-w-2xl mx-auto my-10 w-full"> | |
<h4 class="text-lg font-medium text-gray-900">Delete your account</h4> | |
<p class="text-gray-600 text-sm"> | |
Once you delete your accoubt, you will lose all data associated with it. | |
</p> | |
<div> | |
<button class="bg-red-200 text-red-700 font-semibold rounded py-2 px-3 text-sm mt-4"> | |
Delete account | |
</button> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment