- 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.
9 lines
256 B
Plaintext
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> |