Skip to content

Commit 62d9ffe

Browse files
committed
index page created and small css fix to nav bar
1 parent 8078066 commit 62d9ffe

2 files changed

Lines changed: 20 additions & 3 deletions

File tree

app/templates/base.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
<a href="{{url_for('auth.account')}}" class="hover:text-gray-400">Account</a>
2121
</div>
2222
{%else%}
23-
<div class="flex flex-col md:flex-row md:justify-between md:items-center text-center
24-
md:text-left gap-4 md:gap-6">
23+
<div class="flex flex-col md:flex-row md:justify-between md:items-center gap-4 md:gap-6">
2524
<a href="{{url_for('auth.login')}}" class="hover:text-gray-400">Login</a>
2625
<a href="{{url_for('auth.register')}}" class="hover:text-gray-400">Register</a>
2726
</div>

app/templates/index.html

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,23 @@
55
{%include "partials/form_errors.html"%}
66

77
{%block content%}
8-
<h1>Welcome to Task Manager!</h1>
8+
<div class="text-center mt-20 flex flex-col justify-center gap-10 max-w-xl mx-auto">
9+
<h1 class="text-4xl font-semibold">Welcome to Task Manager!</h1>
10+
11+
<p class="text-gray-600">A simple task management application built with Flask and SQLite. Create, update and track tests through a simple
12+
interface</p>
13+
14+
<p class="text-gray-600">Use the links above to navigate through the features of the application</p>
15+
16+
<div class="flex flex-col gap-5">
17+
<p class="text-lg font-semibold underline">Basic instructions:</p>
18+
19+
<p>Seed the db with python seed.py</p>
20+
21+
<p>Log in using username: aaaa, password: test</p>
22+
</div>
23+
24+
<p class="text-gray-600 text-sm">Need help? <a href="https://github.com/mpbe/TaskManager/blob/main/README.md" class="text-blue-500 underline hover:text-blue-600">Click here</a> for the readme</p>
25+
</div>
26+
927
{%endblock%}

0 commit comments

Comments
 (0)