# Automatic Logins

**URL:** https://community.thunkable.com/t/automatic-logins/577697
**Category:** Questions about Thunkable X
**Created:** [May 19, 2020, 11:07am UTC](https://community.thunkable.com/t/automatic-logins/577697 "2020-05-19T11:07:07Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![bobsunscreen](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/bobsunscreen/32/85667_2.png) [@bobsunscreen](https://community.thunkable.com/u/bobsunscreen)
#### Post date: [May 19, 2020, 11:07am UTC](https://community.thunkable.com/t/automatic-logins/577697/1 "2020-05-19T11:07:07Z")

</div>

I have coded a log in/sign up screen for my app. After the user creates an account and logs in, their information is auto filled next time they log in. Is there any way to code the app to automatically skip the log in/sign up screen if the user has already logged in before?

---

<div class="post-metadata">

### Author: ![jared](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jared/32/138473_2.png) [@jared](https://community.thunkable.com/u/jared)
#### Post date: [May 19, 2020, 11:38am UTC](https://community.thunkable.com/t/automatic-logins/577697/2 "2020-05-19T11:38:23Z")

</div>

Sure! Can you share your code?

---

<div class="post-metadata">

### Author: ![bobsunscreen](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/bobsunscreen/32/85667_2.png) [@bobsunscreen](https://community.thunkable.com/u/bobsunscreen)
#### Post date: [May 19, 2020, 12:45pm UTC](https://community.thunkable.com/t/automatic-logins/577697/3 "2020-05-19T12:45:30Z")

</div>

Sure thing - my project link is [here](https://x.thunkable.com/copy/66797535b6796b838050323873ee280e). Just to warn you: unlike most people, I made two separate screens, one to log in and one to sign up.

---

<div class="post-metadata">

### Author: ![jared](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jared/32/138473_2.png) [@jared](https://community.thunkable.com/u/jared)
#### Post date: [May 19, 2020, 1:16pm UTC](https://community.thunkable.com/t/automatic-logins/577697/4 "2020-05-19T13:16:24Z")

</div>

Sorry to make you share. I just looked at one of my projects and snapped some shots of code.

You need a way to save the password/email. I do this with a switch/button on the sign in screen. A “remember me” switch/button.

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/f/4/f49fa6e371771c72d0a4a8d2179a670c178f0cd4.jpeg)

Then you can ask the app to see if this exist upon the app starting and let it login if so.

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/8/5/856a215524143e5998aa202ba41a3279323fd56a.jpeg)

This is how I make the save happen

 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/a/7/a7a8c143ca92c252632eee0b2321ed584a2ed992.jpeg)

---

<div class="post-metadata">

### Author: ![bobsunscreen](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/bobsunscreen/32/85667_2.png) [@bobsunscreen](https://community.thunkable.com/u/bobsunscreen)
#### Post date: [May 19, 2020, 3:01pm UTC](https://community.thunkable.com/t/automatic-logins/577697/5 "2020-05-19T15:01:20Z")

</div>

Thanks for the help! I think I got a bit lost while coding that, so my app isn’t working properly. Could you please look over my [code](https://x.thunkable.com/copy/4d07cb172acf27d14ae473cd5368dd1b)? (I didn’t add the “remember me” switch, instead I tried to make that function automatic.)

---

<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, 11:29am UTC](https://community.thunkable.com/t/automatic-logins/577697/6 "2024-11-08T11:29:10Z")

</div>


