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

10 lines
200 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">
<%= render 'form' %>
</div>
</div>