This article will demonstrate how to host Angular 8 application on Azure Cloud. You will need, in this tutorial Visual Studio Code and Free subscription on Microsoft Cloud Azure. Set up new App Service on Azure First of all, let’s create an new App Service called “DemoAngular8″. In your home page in azure portal, at […]
Month: January 2020
Angular 8 – ASP.Net Core Tutorial part 6 Bearer Authentication
In this part of tutorial, we will see together, how to make Bearer authentication. What’s Bearer Authentication Bearer authentication (also called token authentication) is an HTTP authentication scheme that involves security tokens called bearer tokens. The name “Bearer authentication” can be understood as “give access to the bearer of this token.” The bearer token is a cryptic string, usually […]
Xamarin Forms – Login Form
In this part of tutorial, we ‘ll see how to made Xamarin Forms – Login Page. You can find in the last post the introduction to Xamarin Forms Tutorial – Prism. Creating LoginPage First of all, let’s create a new ContentPage called LoginPage.xaml.You can see that Visual Studio creates a new file under ViewModels forlder […]
Angular 8 with ASP.Net Core Tutorial part 5 Login Form
In this part of Tutorial, we will learn how to make: Login Form. Email and Password Validations. Login action Web API You can find the code source on GitHub:– Web API: https://github.com/AlphaTechstudios/Forms.WebAPI/tree/angular_tuto_part_5– Angular: https://github.com/AlphaTechstudios/Forms/tree/Angular_tuto_part_5 Add Login Form Last time, we have already created the sign-in component. Let’s navigate to sign-in.component.html and add 2 fields for […]