I can get it to work on windows but I can not get it work on Ubuntu server. The file is in the images folder and inside that is the png file. The html is in the templates folder and inside the template folder is the images folder with the png file. I have the same setup on windows and it works.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class= "container">
<form action="/search" class="search-bar" method="GET">
<label for="query">Search:</label><br>
<input type="text" name="query" placeholder="Enter Serial Number"><br>
<button type="submit"><img src="images/search.png"></button>
</form>
</div>
</body>
</html>
I try move the files and even copy the whole dir the issue persist. It suppose to show an image but it don't. Even my style.css not being found.