Good day,
There is no user login process written in the App...
In order to authenticate a user and "recognize him" there must be one or another way of login procedure. Roles for users can only apply AFTER the user is signed in.
SQL Server supports two authentication methods: (1) using "Windows authentication" or "Active Directory authentication", and (2) using User name and password pairs which are maintained within SQL Server.
https://learn.microsoft.com/en-us/dotnet/framework/data/adonet/sql/authentication-in-sql-server
Which one of these options fits you?
In first glance seems like you want to use Active Directory authentication. This way the user just need to connect the domain and all his activities will be done under the Active Directory authentication
Check if this tutorial help you: