mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
Co-authored-by: Subin <subinthattaparambil@gmail.com> Co-authored-by: Manoj <manojmj92@gmail.com> Co-authored-by: Nithin <webofnithin@gmail.com>
25 lines
643 B
Plaintext
25 lines
643 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Chatwoot</title>
|
|
<%= csrf_meta_tags %>
|
|
|
|
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
|
|
</head>
|
|
<% if current_user %>
|
|
<body data-account-id="<%= current_user.account_id %>" >
|
|
<% end %>
|
|
<% if user_signed_in? %>
|
|
<li>
|
|
<%= link_to('Logout', destroy_user_session_path, :method => :delete) %>
|
|
</li>
|
|
<% else %>
|
|
<li>
|
|
<%= link_to('Login', new_user_session_path) %>
|
|
</li>
|
|
<% end %>
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|