Skip to content

Commit

Permalink
Fix: Updated frontend UI (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangsonww committed Mar 12, 2024
1 parent ba0d5b5 commit 34d6978
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions MovieVerse-Frontend/html/movies-list.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movies List</title>
<style>
body {
font-family: Arial, sans-serif;
}
.movie {
margin-bottom: 20px;
}
.movie-title {
font-weight: bold;
}
.movie-year {
font-style: italic;
}
.movie-description {
margin-top: 5px;
}
</style>
</head>
<body>
<h1>Movies List</h1>
{{#each movies}}
<div class="movie">
<div class="movie-title">{{this.title}}</div>
<div class="movie-year">Released in: {{this.year}}</div>
<div class="movie-description">{{this.description}}</div>
</div>
{{/each}}
</body>
</html>

0 comments on commit 34d6978

Please sign in to comment.