mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Add toggle to hide email
This commit is contained in:
parent
eb54bd588a
commit
a2a1323e01
1 changed files with 15 additions and 9 deletions
|
@ -21,6 +21,7 @@ export default function UserPage() {
|
|||
const [errors] = useState({});
|
||||
const pathname = usePathname();
|
||||
const [waitingSave, setWaitingSave] = useState(false);
|
||||
const [showEmail, setShowEmail] = useState(false);
|
||||
|
||||
useEffect(() => {
|
||||
loadUser();
|
||||
|
@ -127,15 +128,20 @@ export default function UserPage() {
|
|||
onValueChange={setName}
|
||||
/>
|
||||
|
||||
<Input
|
||||
label="Email"
|
||||
labelPlacement="outside"
|
||||
name="email"
|
||||
placeholder="Enter an email"
|
||||
type="text"
|
||||
value={email}
|
||||
onValueChange={setEmail}
|
||||
/>
|
||||
<p>Email</p>
|
||||
{showEmail && (
|
||||
<Input
|
||||
label="Email"
|
||||
name="email"
|
||||
placeholder="Enter an email"
|
||||
type="text"
|
||||
value={email}
|
||||
onValueChange={setEmail}
|
||||
/>
|
||||
)}
|
||||
<Button size="sm" onPress={() => setShowEmail(!showEmail)}>
|
||||
{showEmail ? "Hide Email" : "Show Email"}
|
||||
</Button>
|
||||
|
||||
<p>Bio</p>
|
||||
<Editor content={bio} setContent={setBio} />
|
||||
|
|
Loading…
Reference in a new issue