blob: 6631bead28aa85a185ec5e2526462ad2489eaaa8 [file] [log] [blame]
TRM-coding286e6782025-06-13 21:00:11 +08001<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Index Page</title>
7 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
8</head>
9<body>
10 {% extends 'base.html' %}
11
12 {% block content %}
13 <h1>Welcome to the Index Page</h1>
14 <p>This is the main page of the application.</p>
15 {% endblock %}
16</body>
17</html>