LeoKlaus / plappa

An Audiobook client for Jellyfin and AudioBookShelf, written in Swift/SwiftUI.
https://plappa.me
159 stars 0 forks source link

[FEATURE] password manager support #134

Closed sevenlayercookie closed 1 week ago

sevenlayercookie commented 1 week ago

iOS doesn't seem to detect the username/password boxes when logging into the server as username/password forms, so the iOS password manager isn't being triggered (for storing or recalling the password).

Is it possible to tag these forms so that iOS will prompt to remember the password?

LeoKlaus commented 1 week ago

Both the username and password fields are marked as such and iOS will give you the option to open your password manager: image

Automatically filling and or saving the data is sadly not possible, as this requires the "associated domain" to be set at compile time.

sevenlayercookie commented 1 week ago

Both the username and password fields are marked as such and iOS will give you the option to open your password manager:

image

Automatically filling and or saving the data is sadly not possible, as this requires the "associated domain" to be set at compile time.

Ah I see I suppose that makes sense. Thanks for the explanation