Sha256: 446ab72346e1ba037a54d1508f08e93992f75eac0aed1e17615fb5812beb7264
Contents?: true
Size: 722 Bytes
Versions: 5
Compression:
Stored size: 722 Bytes
Contents
<h1>Verify login code</h1> <p>Look for a 6 digit code in the inbox or spam folder.</p> <%= form_with model: @verification, url: url_for(action: :update), data: { turbo: false }, method: :patch do |f| %> <%= f.hidden_field :salt %> <%= f.hidden_field :data %> <%= f.label :code %> <%= f.text_field :code, autofocus: true %> <%= f.submit "Continue" %> <% end %> <% if @verification.errors.any? %> <p><%= @verification.errors.full_messages.to_sentence %></p> <% end %> <p> Launch <%= link_to "Gmail", "https://gmail.com/", target: "_blank" %> | <%= link_to "Outlook", "https://outlook.live.com/", target: "_blank" %> | <%= link_to "Yahoo Mail", "https://mail.yahoo.com/", target: "_blank" %> </p>
Version data entries
5 entries across 5 versions & 1 rubygems