dj-jwt-auth 1.5.2__tar.gz → 1.5.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. dj-jwt-auth-1.5.4/MANIFEST.in +1 -0
  2. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/PKG-INFO +1 -1
  3. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/dj_jwt_auth.egg-info/PKG-INFO +1 -1
  4. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/dj_jwt_auth.egg-info/SOURCES.txt +2 -0
  5. dj-jwt-auth-1.5.4/django_jwt/templates/django-jwt-index.html +45 -0
  6. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/setup.cfg +1 -1
  7. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/README.md +0 -0
  8. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/dj_jwt_auth.egg-info/dependency_links.txt +0 -0
  9. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/dj_jwt_auth.egg-info/requires.txt +0 -0
  10. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/dj_jwt_auth.egg-info/top_level.txt +0 -0
  11. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/__init__.py +0 -0
  12. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/config.py +0 -0
  13. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/exceptions.py +0 -0
  14. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/middleware.py +0 -0
  15. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/pkce.py +0 -0
  16. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/roles.py +0 -0
  17. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/settings.py +0 -0
  18. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/urls.py +0 -0
  19. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/user.py +0 -0
  20. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/utils.py +0 -0
  21. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/django_jwt/views.py +0 -0
  22. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/pyproject.toml +0 -0
  23. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/setup.py +0 -0
  24. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/tests/__init__.py +0 -0
  25. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/tests/models.py +0 -0
  26. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/tests/test.py +0 -0
  27. {dj-jwt-auth-1.5.2 → dj-jwt-auth-1.5.4}/tests/urls.py +0 -0
@@ -0,0 +1 @@
1
+ recursive-include django_jwt/templates *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dj-jwt-auth
3
- Version: 1.5.2
3
+ Version: 1.5.4
4
4
  Summary: A Django package for JSON Web Token validation and verification. Using PyJWT.
5
5
  Home-page: https://www.example.com/
6
6
  Author: Konstantin Seleznev
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dj-jwt-auth
3
- Version: 1.5.2
3
+ Version: 1.5.4
4
4
  Summary: A Django package for JSON Web Token validation and verification. Using PyJWT.
5
5
  Home-page: https://www.example.com/
6
6
  Author: Konstantin Seleznev
@@ -1,3 +1,4 @@
1
+ MANIFEST.in
1
2
  README.md
2
3
  pyproject.toml
3
4
  setup.cfg
@@ -18,6 +19,7 @@ django_jwt/urls.py
18
19
  django_jwt/user.py
19
20
  django_jwt/utils.py
20
21
  django_jwt/views.py
22
+ django_jwt/templates/django-jwt-index.html
21
23
  tests/__init__.py
22
24
  tests/models.py
23
25
  tests/test.py
@@ -0,0 +1,45 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Admin Panel</title>
6
+ <meta name="color-scheme" content="dark"/>
7
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
8
+ <style>
9
+ .center-container {
10
+ display: flex;
11
+ flex-direction: column;
12
+ align-items: center;
13
+ justify-content: center;
14
+ height: 100vh;
15
+ }
16
+
17
+ .button-group {
18
+ display: flex;
19
+ gap: 50px;
20
+ }
21
+
22
+ .button-group a {
23
+ text-decoration: none;
24
+ color: white;
25
+ background-color: var(--primary);
26
+ }
27
+
28
+ .error-message {
29
+ color: red;
30
+ margin-top: 20px;
31
+ }
32
+ </style>
33
+ </head>
34
+ <body>
35
+ <div class="center-container">
36
+ <div class="button-group">
37
+ <button><a href="{{ login_url }}">Login</a></button>
38
+ <button><a href="{{ logout_url }}">Logout</a></button>
39
+ </div>
40
+ <div class="error-message">
41
+ {{ error_message }}
42
+ </div>
43
+ </div>
44
+ </body>
45
+ </html>
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = dj-jwt-auth
3
- version = 1.5.2
3
+ version = 1.5.4
4
4
  description = A Django package for JSON Web Token validation and verification. Using PyJWT.
5
5
  long_description = file: README.md
6
6
  url = https://www.example.com/
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes