Creating Fingerprint System using Tab Device

Hello, im curious about creating a fingerprint system for absence system. i want my django can read a fingerprint inputted by user in a tab device. is that possible? what dango feature should i use to make that? and what device compatibility aspect should i research to make the fingerprint works on django app?

Django runs on the server, not in the browser.

If this is something that is going to be done at the remote browser, then you need some type of JavaScript library that can read the input and then send it to the server. Django would not be involved with that.

1 Like

okay i will start to research for the javascript library that handle fingerprint data. thankyou