Sha256: 9976ddf17536d1ec535513f443e7d49b99de25b617f7a499ad7c55ab90551b38

Contents?: true

Size: 784 Bytes

Versions: 2

Compression:

Stored size: 784 Bytes

Contents

<%- @title = p_("MultiAuth", "You have been logged out.") -%>
<%- @enable_side_column = false -%>
<%- @stylesheets = %[auth] -%>

<%- additional_head { -%>
  <%# MEMO: meta要素による自動遷移は無効化されている可能性があるため、JavaScriptによる遷移を併用する %>
  <meta http-equiv="refresh" content="1; URL=<%= URI.escape(@return_path) %>" />
  <script type="text/javascript">
    // <![CDATA[
    setTimeout(function() {
      window.location = "<%= URI.escape(@return_path) %>";
    }, 2000);
    // ]]>
  </script>
<%- } -%>

<div id="dialog">
  <h1><%=h @title %></h1>
  <div class="message">
    <%= p_("MultiAuth", "Please click %{link} when the page doesn't change." % { :link => link_to(h(@return_path), @return_path) }) %>
  </div>
</div>

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
okkez-multi_auth-0.0.6 app/views/auth/logged_out.html.erb
multi_auth-0.0.6 app/views/auth/logged_out.html.erb