In this section, we are going to accomplish two tasks. Firstly, we are going to create a view layer that facilitates the registration of new users on the Place Reviewer platform. Secondly, we are going to create suitable controllers and actions to present the user with the registration view and handle registration form submissions. Simple enough right? Glad you think so! Go ahead and create a register.html template in the Place Reviewer project. Recall that all template files belong in the templates directory under resources. Now, add the following template HTML to the file:
<!DOCTYPE html><html lang="en" xmlns:th="http://www.thymeleaf.org"><head> <title>Register</title> <link rel="stylesheet" th:href= ...