Sha256: 71a9166db7eef1ef4c23c1bfc6c570e17da5782222b8355fce6b557942440f19
Contents?: true
Size: 849 Bytes
Versions: 21
Compression:
Stored size: 849 Bytes
Contents
<p style="color: green"><%%= notice %></p> <p style="color: red"><%%= alert %></p> <h1>Sign in</h1> <%%= form_with(url: sign_in_path) do |form| %> <div> <%%= form.label :email, style: "display: block" %> <%%= form.email_field :email, value: params[:email_hint], autofocus: true, required: true, autocomplete: "email" %> </div> <div> <%%= form.label :password, style: "display: block" %> <%%= form.password_field :password, required: true, autocomplete: "current-password" %> </div> <div> <%%= form.submit "Sign in" %> </div> <%% end %> <%- if omniauthable? -%> <div> <%%= button_to "Sign in with OmniAuth", "/auth/developer", "data-turbo" => false %> </div> <%- end -%> <br> <div> <%%= link_to "Sign up", sign_up_path %> | <%%= link_to "Forgot your password?", new_identity_password_reset_path %> </div>
Version data entries
21 entries across 21 versions & 1 rubygems