Currently, I am in the process of developing a web application that consists of two main pages - home.html and about.html. The issue I am encountering is that when users click on a specific user in the home.html page, they are redirected to about.html but do not see any information about the selected user. If anyone can take a look at my code and pinpoint where I may have gone wrong, I would greatly appreciate it. Thank you!
Here is an excerpt of my code from home.html:
<form name="myForm">
<label>Search
<input type="text" size="35" ng-model="userSearch">
</label>
// More HTML content here
Snippet from about.html:
// About.html contents here
Code snippet from app.js:
// JavaScript code from app.js here
Controller section:
// Controller details go here
Section for Services:
// Services information here