diff options
author | Vitaly Takmazov | 2022-12-07 16:13:57 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2022-12-07 17:38:55 +0300 |
commit | 5e0500933d2f805fe879ced9171c65839c72579b (patch) | |
tree | 60eeb84ac103c3f160dda3c2adbd1a10c489e8ec /src/main/resources/templates/views/partial/navigation.html | |
parent | 206742aed99a20fea014c83408fb44ff36089351 (diff) |
Login: use `Referer` header to redirect after the successful login
Diffstat (limited to 'src/main/resources/templates/views/partial/navigation.html')
-rw-r--r-- | src/main/resources/templates/views/partial/navigation.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/templates/views/partial/navigation.html b/src/main/resources/templates/views/partial/navigation.html index 184c8f2b..159c3d21 100644 --- a/src/main/resources/templates/views/partial/navigation.html +++ b/src/main/resources/templates/views/partial/navigation.html @@ -33,7 +33,7 @@ <span class="icon-title desktop">{{ i18n("messages","link.postMessage") }}</span> </a> {% else %} - <a class="a-login" href="/login" rel="nofollow"> + <a class="a-login" href="/login?retpath={{ retpath | default('/') }}" rel="nofollow"> <i data-icon="ei-user" data-size="s"></i> <span class="icon-title desktop">{{ i18n("messages", "link.Login") }}</span> </a> |