# Holding a Variable

**URL:** https://community.glideapps.com/t/holding-a-variable/70659
**Category:** Ask for Help
**Created:** [February 9, 2024, 11:31am UTC](https://community.glideapps.com/t/holding-a-variable/70659 "2024-02-09T11:31:12Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![Benjamin\_Strickland](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/benjamin_strickland/32/68255_2.png) [@Benjamin\_Strickland](https://community.glideapps.com/u/Benjamin_Strickland)
#### Post date: [February 9, 2024, 11:31am UTC](https://community.glideapps.com/t/holding-a-variable/70659/1 "2024-02-09T11:31:12Z")

</div>

How does Glide store a variable? Similar to when Glide asks for a PIN.

Thanks.

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [February 9, 2024, 11:47am UTC](https://community.glideapps.com/t/holding-a-variable/70659/2 "2024-02-09T11:47:27Z")

</div>

I don’t know how PINs are managed, but a common technique for storing “variables” in Glide is to use columns in the User Profile row. This is a good choice, as the User Profile row can be accessed from anywhere in an App (as long as a user is signed in) for both read and write.

---

<div class="post-metadata">

### Author: ![Robert\_Petitto](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/robert_petitto/32/25193_2.png) [@Robert\_Petitto](https://community.glideapps.com/u/Robert_Petitto)
#### Post date: [February 9, 2024, 1:31pm UTC](https://community.glideapps.com/t/holding-a-variable/70659/3 "2024-02-09T13:31:39Z")

</div>

> [@Darren\_Murphy](#):
>
> This is a good choice

Sure is…and I dare say “best practice” among fellow Glide experts.

---

<div class="post-metadata">

### Author: ![Benjamin\_Strickland](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/benjamin_strickland/32/68255_2.png) [@Benjamin\_Strickland](https://community.glideapps.com/u/Benjamin_Strickland)
#### Post date: [February 9, 2024, 2:46pm UTC](https://community.glideapps.com/t/holding-a-variable/70659/4 "2024-02-09T14:46:42Z")

</div>

Thanks

---

<div class="post-metadata">

### Author: ![Benjamin\_Strickland](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/benjamin_strickland/32/68255_2.png) [@Benjamin\_Strickland](https://community.glideapps.com/u/Benjamin_Strickland)
#### Post date: [February 9, 2024, 5:45pm UTC](https://community.glideapps.com/t/holding-a-variable/70659/5 "2024-02-09T17:45:27Z")

</div>

Can a PW be entered without anyone seeing those characters?

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [February 9, 2024, 5:55pm UTC](https://community.glideapps.com/t/holding-a-variable/70659/6 "2024-02-09T17:55:06Z")

</div>

Kind of. You can use user specific columns or row owners to help isolate who has access to that password value, but in no way would I ever consider it fully secure. Data is still stored in clear text. Most businesses that deal with passwords are typically storing them as encrypted, hashed, and salted values under tight security. Nothing in Glide offers the security that I would be required to deal with passwords or credentials in our own

I personally would not recommend ever working with passwords in Glide unless security of those passwords is not much of a concern. As far as authentication to access the app, Glide handles that quite well and they deal with all of the security behind it so we don’t have to.

---

<div class="post-metadata">

### Author: ![Benjamin\_Strickland](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/benjamin_strickland/32/68255_2.png) [@Benjamin\_Strickland](https://community.glideapps.com/u/Benjamin_Strickland)
#### Post date: [February 9, 2024, 6:16pm UTC](https://community.glideapps.com/t/holding-a-variable/70659/7 "2024-02-09T18:16:42Z")

</div>

Yes, I agree with you. I was just wondering if the PW could be \* at the point of input. This would be a good request to Glide.

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [February 9, 2024, 6:26pm UTC](https://community.glideapps.com/t/holding-a-variable/70659/8 "2024-02-09T18:26:57Z")

</div>

No, there is not any kind of password style input available, unless there is a way to do it with CSS that I’m unaware of. Could be useful in some cases though.

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [February 10, 2024, 12:03am UTC](https://community.glideapps.com/t/holding-a-variable/70659/9 "2024-02-10T00:03:57Z")

</div>

This does it automatically, if Glide ever has a component for that.

> **[\- HTML: HyperText Markup Language | MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/password)**
>
> elements of type password provide a way for the user to securely enter a password.

But as you said, for security issues, I don’t think this ever becomes a thing in Glide.
