Skip to content

Commit 3d02027

Browse files
Updated Packages and UI
1 parent 0dae361 commit 3d02027

File tree

3 files changed

+23
-14
lines changed

3 files changed

+23
-14
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ storage/public/*
88
redis.conf
99
redis-data
1010
*.log
11-
.pytest_cache
11+
.pytest_cache
12+
__pycache__

app/views/pages/auth/forgot_password.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ <h1 class="font-bold text-center text-2xl mb-5">Your Logo</h1>
1212

1313
{{ form.email.label(class_="font-semibold text-sm text-gray-600 pb-1 block") }}
1414
{{ form.email(class_="border rounded-lg px-3 py-2 mt-1 mb-5 text-sm w-full", autofocus="") }}
15+
16+
{% if message %}
17+
<div class="text-red-600 text-xs mb-3 text-center">
18+
<strong class="font-bold">Whoops!</strong>
19+
<span class="block sm:inline">{{ message }}</span>
20+
</div>
21+
{% endif %}
22+
1523
<button type="submit"
1624
class="transition duration-200 bg-blue-500 hover:bg-blue-600 focus:bg-blue-700 focus:shadow-sm focus:ring-4 focus:ring-blue-500 focus:ring-opacity-50 text-white w-full py-2.5 rounded-lg text-sm shadow-sm hover:shadow-md font-semibold text-center inline-block">
1725
<span class="inline-block mr-2">Send Reset Link</span>

requirements.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
Flask==2.0.1
1+
Flask==2.2.2
22
flask-orator==0.2.0
33
gunicorn==20.1.0
4-
autopep8==1.5.7
5-
psycopg2==2.9.1
6-
mysqlclient==2.0.3
7-
python-dotenv==0.19.0
4+
autopep8==1.7.0
5+
psycopg2==2.9.3
6+
mysqlclient==2.1.1
7+
python-dotenv==0.20.0
88
Flask-Mail==0.9.1
9-
celery==5.1.2
10-
redis==3.5.3
11-
Flask-Caching==1.10.1
9+
celery==5.2.7
10+
redis==4.3.4
11+
Flask-Caching==2.0.1
1212
filedepot==0.8.0
13-
cryptography==3.4.8
14-
pytest==6.2.5
15-
Flask-Login==0.5.0
16-
Flask-WTF==0.15.1
17-
email-validator==1.1.3
13+
cryptography==37.0.4
14+
pytest==7.1.2
15+
Flask-Login==0.6.2
16+
Flask-WTF==1.0.1
17+
email-validator==1.2.1

0 commit comments

Comments
 (0)