File size: 1,085 Bytes
c826ee0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Simple To-Do App</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
    <div class="container">
        <h1>Simple To-Do List</h1>
        
        <form action="/add" method="POST" class="task-form">
            <input type="text" name="task" placeholder="Enter a new task..." required>
            <button type="submit">Add Task</button>
        </form>
        
        <ul class="task-list">
            {% if tasks %}
                {% for task in tasks %}
                    <li>
                        <span class="task-text">{{ task }}</span>
                        <a href="{{ url_for('delete', task_id=loop.index0) }}" class="delete-btn">Delete</a>
                    </li>
                {% endfor %}
            {% else %}
                <li class="empty-list">No tasks yet! Add one above.</li>
            {% endif %}
        </ul>
    </div>
</body>
</html>