@arso1er Hi there, I don't know whether your problem is as same as mine or not. But you can see this issue on github:
https://github.com/NodeBB/NodeBB/issues/6074
mohammadhassan99 created this issue in NodeBB/NodeBB closed Problem with emojis #6074Hi,
I noticed that we can logout from the desktop view, but clicking the logout link from mobile view doesn't do anything.
We're running NodeBB v1.14.3 and we're using the nodebb-plugin-session-sharing plugin v4.6.7.
Has anyone experienced the same issue? Can you please help us figure out how to fix?
Thanks!
We have fixed the issue. Our template was based on slick. We compared this to Persona and found differences:
In Slick:
<li component="user/logout">
<a href="#"><i class="fa fa-fw fa-sign-out"></i><span> [[global:logout]]</span></a>
</li>
In Persona:
<li component="user/logout">
<form method="post" action="{relative_path}/logout">
<input type="hidden" name="_csrf" value="{config.csrf_token}">
<input type="hidden" name="noscript" value="true">
<button type="submit" class="btn btn-link">
<i class="fa fa-fw fa-sign-out"></i><span> [[global:logout]]</span>
</button>
</form>
</li>