ayush2917 commited on
Commit
567ee21
·
verified ·
1 Parent(s): 2a477dc

Update templates/message.html

Browse files
Files changed (1) hide show
  1. templates/message.html +16 -14
templates/message.html CHANGED
@@ -1,18 +1,20 @@
1
- {% extends 'base.html' %}
 
2
  {% block content %}
 
 
3
  <h1>Happy Birthday, Manavi!</h1>
4
  <p>Little Krishna has a special message for you!</p>
5
- <div id="birthday-message">
6
- {{ birthday_message }}
7
- </div>
8
- <div id="gift-suggestions">
9
- <h2>Krishna’s Gift Ideas for You!</h2>
10
- <ul>
11
- {% for suggestion in gift_suggestions %}
12
- <li>{{ suggestion }}</li>
13
- {% endfor %}
14
- </ul>
15
- </div>
16
- <img id="birthday-image" src="{{ birthday_image_url }}" alt="Krishna Birthday Image">
17
- <lottie-player src="/static/assets/krishna-lottie.json" background="transparent" speed="1" style="width: 300px; height: 300px; margin: 0 auto;" loop autoplay></lottie-player>
18
  {% endblock %}
 
1
+ {% extends "base.html" %}
2
+
3
  {% block content %}
4
+ <div class="container">
5
+ <div class="message-container">
6
  <h1>Happy Birthday, Manavi!</h1>
7
  <p>Little Krishna has a special message for you!</p>
8
+ <p>{{ birthday_message }}</p>
9
+
10
+ <h2>Krishna’s Gift Ideas for You!</h2>
11
+ <ul>
12
+ {% for gift in gift_suggestions %}
13
+ <li>{{ gift }}</li>
14
+ {% endfor %}
15
+ </ul>
16
+
17
+ <img src="{{ birthday_image_url }}" alt="Little Krishna celebrating Manavi’s birthday" />
18
+ </div>
19
+ </div>
 
20
  {% endblock %}