newsbox/templates/auth/new.plush.html
Adriano Caloiaro 8ae801ae5f
Initial commit
2023-02-15 08:57:48 -08:00

11 lines
314 B
HTML

<div class="auth-wrapper">
<div class="sign-form">
<h1>Sign In</h1>
<%= formFor(user, {action: loginPath(), method: "POST"}) { %>
<%= f.InputTag("Email") %>
<%= f.InputTag("Password", {type: "password"}) %>
<button class="btn btn-success">Sign In!</button>
<% } %>
</div>
</div>