Skip to content

Commit 13cce54

Browse files
committed
fix: anchor tags links and styles
1 parent 48f22c5 commit 13cce54

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

TopMovieList/static/css/styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ body {
1818
background-attachment: fixed;
1919
}
2020

21+
a{
22+
text-decoration: none;
23+
}
24+
2125
.large {
2226
font-size: 3rem;
2327
}

TopMovieList/templates/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ <h1 class="heading">My Top 10 Movies</h1>
2525
<p class="review">"{{ movie.review }}"</p>
2626
<p class="overview">{{ movie.description }}</p>
2727

28-
<a href="{{ url_for('rate_movie', id=movie.id) }}" class="button">Update</a>
29-
<a href="{{ url_for('delete_movie', id=movie.id) }}" class="button delete-button">Delete</a>
28+
<a href="#" class="button">Update</a>
29+
<a href="#" class="button delete-button">Delete</a>
3030

3131
</div>
3232
</div>
3333
</div>
3434
{% endfor %}
3535
</div>
3636
<div class="container text-center add">
37-
<a href="{{ url_for('add_movie') }}" class="button">Add Movie</a>
37+
<a href="#" class="button">Add Movie</a>
3838
</div>
3939

4040
{% endblock %}

0 commit comments

Comments
 (0)