Hi, I’m creating a custom app and I need to put a help text into de password field on the basic auth form.
How can I achieve it?

Thanks
Best answer by ikbelkirasan
View originalHi, I’m creating a custom app and I need to put a help text into de password field on the basic auth form.
How can I achieve it?
Thanks
Best answer by ikbelkirasan
View originalusername
and password
fields and customize their helpText
value.
That said, you’ll still have to include authentication header by yourself. The Basic authorization header can be calculated as follows:
return z.request({
//...
headers: {
Authorization:
"Basic " +
Buffer.from(
`${bundle.authData.username}:${bundle.authData.password}`
).toString("base64"),
},
});
Enter your username or e-mail address. We'll send you an e-mail with instructions to reset your password.