sample_rails_tailwind/app/views/users/new.html.erb
songtianlun 42d8d5ce1d feat: enhance layout responsiveness and style
- Update footer layout to improve styling and center alignment
- Change header theme control from 'synthwave' to 'light'
- Enhance home page layout with hero and background styles
- Refactor user sign-up form with better styling and structure
- Add copyright notice and responsive design to the footer

These changes focus on enhancing the overall user experience with a
more modern layout and improved responsiveness across devices. The
footer now includes copyright information and a cleaner design, while
the sign-up form has additional styling to improve usability.
2025-01-17 00:01:13 +08:00

9 lines
256 B
Plaintext

<% provide(:title, 'Sign up') %>
<% provide(:button_text, 'Create my account') %>
<div class="container mx-auto px-4">
<h1 class="text-3xl font-bold text-center my-8">Sign up</h1>
<div class="max-w-md mx-auto">
<%= render 'form' %>
</div>
</div>