Front End (Client Side)
The front end of a web application is the layer where users interact with the website.
Last updated
The front end of a web application is the layer where users interact with the website.
Last updated
The front end of a web application is the layer where users interact with the website. With HTML, a structure is created for how the content on the web page should be seen by the browsers.
Don't think of a mere interface that has to do with the design and layout of websites when you think about the front end. As in this layer, intense personal data processing activities are carried out. In comparison to the backend, the front end stores less sensitive data in your web applications.
Yet, the front end is the main gate to your web applications.
A modern website consists of many different layers, and some of the tools and technologies used include data sharing with third parties.
Implementing third-party libraries on your web application increases your privacy and security risks due to the constant data exchange.
Let's look at an example.
Let's create a registration form for our galactic website, we want our users to register with our website through this form.
Email address and password are all we need right now.
That's why we build a form where we request the email address and the password required for registration.
You can find the sample code snippet below to create a web form with HTML that allows users to enter their email addresses and password.
We should not forget that we have to provide a privacy notice before asking the users for their input.
In addition, it's a best practice to collect as little information as possible at this stage due to both user experience and complying with the data minimization principle.