Sha256: 2d549dfd29a8061430c97cc4059ad3500a903ab8d92971c4060f90355cfe2594

Contents?: true

Size: 601 Bytes

Versions: 2

Compression:

Stored size: 601 Bytes

Contents

<h2><%= I18n.t('title', :scope => 'devise.otp.tokens.recovery') %></h2>
<p><%= I18n.t('explain', :scope => 'devise.otp.tokens.recovery') %></p>

<table>
  <caption>
    <thead>
        <tr>
          <th><%= I18n.t('sequence', :scope => 'devise.otp.tokens.recovery') %></th>
          <th><%= I18n.t('code', :scope => 'devise.otp.tokens.recovery') %></th>
        </tr>
    </thead>
    <tbody>
      <%- resource.next_otp_recovery_tokens.each do |seq, code| %>
        <tr>
          <td><%= seq %></td>
          <td><%= code %></td>
        </tr>
      <% end %>
    </tbody>
  </caption>
</table>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
devise-otp-0.4.0 app/views/devise/otp_tokens/recovery.html.erb
devise-otp-0.3.0 app/views/devise/tokens/recovery.html.erb