18 lines
642 B
HTML
18 lines
642 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Favorites - GiftShop Polska{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="py-5">
|
|
<div class="container py-5">
|
|
<h1 class="display-5 font-playfair mb-5">Your Favorites</h1>
|
|
<div class="p-5 bg-light rounded-4 text-center">
|
|
<i class="bi bi-heart display-1 text-muted mb-3"></i>
|
|
<h3>No favorites yet</h3>
|
|
<p class="text-muted">Save your favorite items here to find them easily later.</p>
|
|
<a href="{% url 'catalog' %}" class="btn btn-primary mt-3 text-white">Browse Products</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|