PWeb View
In the MVC (Model-View-Controller) architecture, the View is responsible for displaying the data and the user interface. It is the part of the application that the user interacts with, providing a visual representation.
PWeb View consist with Jinja and HTML, CSS
<!DOCTYPE html>
<html lang="en" class="h-100" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PWeb Boot</title>
<link rel="stylesheet" href="{{ url_for('boot-static.static', filename='css/lib/bootstrap.min.css') }}">
<link rel="stylesheet" href="{{ url_for('boot-static.static', filename='css/style.css') }}">
</head>
<body class="d-flex h-100 text-center text-bg-dark">
<h1>Body of the View</h1>
</body>
</html>