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
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 ikbelkirasanBest answer by ikbelkirasan
username
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 E-mail address. We'll send you an e-mail with instructions to reset your password.