sample_rails_tailwind/app/views/users/new.html.erb

12 lines
260 B
Plaintext
Raw Normal View History

<% provide(:title, 'Sign up') %>
<% provide(:button_text, 'Create my account') %>
<h1>Sign up</h1>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<%= turbo_frame_tag "signup_form" do %>
<%= render 'form' %>
<% end %>
</div>
</div>