diff --git a/ToDo.txt b/ToDo.txt
index acb0021..7ef9e0e 100755
--- a/ToDo.txt
+++ b/ToDo.txt
@@ -13,4 +13,9 @@ ProjectMistData.cs
Data inside the sql doesnt match what is inside the database
ForgotPassword Email / Resetpassword Email
- Needs styles that match the theme of the website
\ No newline at end of file
+ Needs styles that match the theme of the website
+
+Manage / Data tabs in Account settings
+ Theme needs to be updated to match
+ Delete button doesn't shade when mouse hovers
+ frame that comes up isnt themed either
\ No newline at end of file
diff --git a/src/MistoxWebsite.Client/Pages/Account/ActivityPages/ResetPassword.razor b/src/MistoxWebsite.Client/Pages/Account/ActivityPages/ResetPassword.razor
index 3a6a260..551726e 100755
--- a/src/MistoxWebsite.Client/Pages/Account/ActivityPages/ResetPassword.razor
+++ b/src/MistoxWebsite.Client/Pages/Account/ActivityPages/ResetPassword.razor
@@ -57,7 +57,7 @@
bool success = result == "true" ? true : false;
if (success){
Result = "Password changed successfully";
- await Task.Delay(2000);
+ Thread.Sleep(2000);
Nav.NavigateTo("/", true);
}else{
Result = "Something is wrong";
diff --git a/src/MistoxWebsite.Client/Pages/Admin/CreateProduct.razor b/src/MistoxWebsite.Client/Pages/Admin/CreateProduct.razor
index 6e36a50..e6106bf 100755
--- a/src/MistoxWebsite.Client/Pages/Admin/CreateProduct.razor
+++ b/src/MistoxWebsite.Client/Pages/Admin/CreateProduct.razor
@@ -10,7 +10,7 @@