Sha256: 2d9b320d8a103aeb91d51bd2e1cc73ac10d6a7c5617971e41964060fe73d7aa6
Contents?: true
Size: 980 Bytes
Versions: 39
Compression:
Stored size: 980 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], required: true, autofocus: 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 %> <br> <%- if passwordless? %> <div> <%%= link_to "Sign in without password", new_sessions_passwordless_path %> </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
39 entries across 39 versions & 1 rubygems