dj-jwt-auth 1.5.2__py3-none-any.whl → 1.5.3__py3-none-any.whl

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.
@@ -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.3
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
@@ -9,11 +9,12 @@ django_jwt/urls.py,sha256=ZhcnRcQ1MBRh-bS7fTa-Vkz8yuWUhv-G_uRXKLnKAs0,320
9
9
  django_jwt/user.py,sha256=lQ7AIdI4J-d2e1oCQIIyQKnXtjqCYD14e4WOhF2LbYs,5292
10
10
  django_jwt/utils.py,sha256=Gz8cH0cD3y_cvW8FwRoCFgShBrYvcB7XBF0GWx0n2qQ,1485
11
11
  django_jwt/views.py,sha256=LweS9G_NBeiuVDLhtm_GtOi_Ok6Sz5KJVTU62k91Jcg,4352
12
+ django_jwt/templates/django-jwt-index.html,sha256=gJfjVcPRK8WME4D-oHYlIHq40c_JdIggsSLoIg9LOKA,1121
12
13
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
14
  tests/models.py,sha256=4uonwXuAvJGlITpuxFazyoeA_CSUYMyN7Vj1gEWJTH4,308
14
15
  tests/test.py,sha256=nD1sm_nH0l9ADnwavySPdhgrNOvLX7nLYol7w306TFU,9720
15
16
  tests/urls.py,sha256=D5FhDSVAudurkrpkCZZPnDvgXSgifwFVB3nAlYBg7uQ,212
16
- dj_jwt_auth-1.5.2.dist-info/METADATA,sha256=TPUgNAgkafofn_j27WQW6uJaxUg4heRRnqk_fvspdgE,4369
17
- dj_jwt_auth-1.5.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
18
- dj_jwt_auth-1.5.2.dist-info/top_level.txt,sha256=58O7TdK-yECZcbmPc52KNlBFpjIUlENuZubCxaSOxus,17
19
- dj_jwt_auth-1.5.2.dist-info/RECORD,,
17
+ dj_jwt_auth-1.5.3.dist-info/METADATA,sha256=f43Uje1M-WKQFC4PUjMnrHD-WHuO21m6BGh5IW0Soxg,4369
18
+ dj_jwt_auth-1.5.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
19
+ dj_jwt_auth-1.5.3.dist-info/top_level.txt,sha256=58O7TdK-yECZcbmPc52KNlBFpjIUlENuZubCxaSOxus,17
20
+ dj_jwt_auth-1.5.3.dist-info/RECORD,,
@@ -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 }}?redirect_uri={{ redirect_uri }}">Logout</a></button>
39
+ </div>
40
+ <div class="error-message">
41
+ {{ error_message }}
42
+ </div>
43
+ </div>
44
+ </body>
45
+ </html>