songtianlun
97c91fc8f3
- Remove unnecessary turbo frame tag from the signup form - Directly render the form within the column div This change simplifies the user signup view by removing the unneeded turbo frame, which was not contributing to the functionality. The form is now rendered directly, making the code cleaner and easier to understand.
10 lines
200 B
Plaintext
10 lines
200 B
Plaintext
<% 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>
|