I am new to Xamarin and currently implementing a Xamarin.Forms application which has a XAML based Login page with Username/Password fields and a Submit button.
Once the user enters the credentials and hit Submit, I need to make a request to the server to generate a JWT token(which I'm getting using an HttpClient) for the validated user.
And then This token should be sent via form-data to a web page and the response page should be loaded in a WebView.
Is this possible in Xamarin.forms? If yes how can it be done?