34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
<% @page_title = "Complete your sign-up" %>
|
||
|
||
<div class="panel panel--centered flex flex-column gap-half <%= "shake" if flash[:alert] %>">
|
||
<h1 class="txt-x-large font-weight-black margin-block-end"><%= @page_title %></h1>
|
||
|
||
<%= form_with model: @signup, url: saas.signup_membership_path, scope: "signup", class: "flex flex-column gap", data: { controller: "form" } do |form| %>
|
||
<%= form.hidden_field :new_user %>
|
||
|
||
<%= form.text_field :full_name, class: "input txt-large", autocomplete: "name", placeholder: "Enter your full name…", autofocus: true, required: true %>
|
||
|
||
<p>You’re one step away. Just enter your name to get your own Fizzy account.</p>
|
||
|
||
|
||
<% if @signup.errors.any? %>
|
||
<div class="margin-block-half">
|
||
<ul class="margin-block-none txt-negative txt-small">
|
||
<% @signup.errors.full_messages.each do |message| %>
|
||
<li><%= message %></li>
|
||
<% end %>
|
||
</ul>
|
||
</div>
|
||
<% end %>
|
||
|
||
<button type="submit" class="btn btn--link center" data-form-target="submit">
|
||
<span>Continue</span>
|
||
<%= icon_tag "arrow-right" %>
|
||
</button>
|
||
<% end %>
|
||
</div>
|
||
|
||
<% content_for :footer do %>
|
||
<%= render "sessions/footer" %>
|
||
<% end %>
|