-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathh22_web_app_page.html
More file actions
24 lines (22 loc) · 837 Bytes
/
h22_web_app_page.html
File metadata and controls
24 lines (22 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<title>The Lucky Page</title>
<link rel="stylesheet" href="{{url_for('static', filename='style.css')}}">
</head>
<body>
<div class="container">
<img width="60px" src="{{url_for('static', filename=icon)}}">
<a href="{{url_for('color_page')}}">Color</a>
<a href="{{url_for('number_page')}}">Number</a>
<a href="{{url_for('week_page')}}">Weekday</a>
<a href="{{url_for('month_page')}}">Month</a>
<a href="{{url_for('cheap_cars')}}">Cars</a>
{% if category == 'car' %}
<h1>Your lucky {{category}} is a</h1>
{% else %}
<h1>Your lucky {{category}} is</h1>
{% endif %}
<h3 style="color: {{lucky_item}}">{{lucky_item}}</h3>
</div>
</body>
</html>