# Password Reset With No Email Reset

**URL:** https://community.thunkable.com/t/password-reset-with-no-email-reset/1409605
**Category:** Questions about Thunkable X
**Tags:** firebase, design, beginner, auth
**Created:** [July 22, 2021, 11:06pm UTC](https://community.thunkable.com/t/password-reset-with-no-email-reset/1409605 "2021-07-22T23:06:18Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![laura.quraishk5](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/laura.quraishk5/32/110804_2.png) [@laura.quraishk5](https://community.thunkable.com/u/laura.quraishk5)
#### Post date: [July 22, 2021, 11:06pm UTC](https://community.thunkable.com/t/password-reset-with-no-email-reset/1409605/1 "2021-07-22T23:06:18Z")

</div>

Hi everyone.

I am creating a stress reduction app for a research project using Firebase for the users’ usernames and passwords. With the help of Catsarisky, I got the sign up to work in Firebase without verifying email addresses by having my users create a 6-digit user id attached to a bogus domain and a password. Thanks again Cathy! 😊

I cannot use email addresses for this project to protect participants’ identities.

Now I am trying to find a way to create a password reset page, but I have not been successful.

Here are my blocks for the sign in/sign up page (which is working great!)

 ![Signin-Signup page (working great)](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/7/9/790907d08a2e5b35ae3d349691562581aedbea28.png)

1. the blocks I have so far on my password reset page (which is not working) 🚫  

2. A video of the error. In the video I am using the password “apples” and signed in successfully, but when I try to change the password to “bananas”, it rejects the new password.

https://youtu.be/Pv3ZD\_x7rFc

---

<div class="post-metadata">

### Author: ![catsarisky](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/catsarisky/32/100661_2.png) [@catsarisky](https://community.thunkable.com/u/catsarisky)
#### Post date: [July 23, 2021, 1:00am UTC](https://community.thunkable.com/t/password-reset-with-no-email-reset/1409605/2 "2021-07-23T01:00:46Z")

</div>

I suspect you’re trying to call signin before the password change is done. See that “when resetpassword is done” area in the first sign-in block? Code that you put there won’t happen until ResetPassword has actually finished.

You may also want to display (use an alert maybe?) any error from the password reset - that’ll be informative.

Also, did you store the “username” or the fake email? If you stored the username, you need to convert it to fake email before using it throughout.

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [July 23, 2021, 2:41am UTC](https://community.thunkable.com/t/password-reset-with-no-email-reset/1409605/3 "2021-07-23T02:41:42Z")

</div>

Interesting case. The normal workflow of Firebase `ResetPassword` function is to send a verification email. Now that you have a “bogus” email, where would the verification message go?

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 1:17pm UTC](https://community.thunkable.com/t/password-reset-with-no-email-reset/1409605/4 "2024-11-08T13:17:49Z")

</div>


