4e09352c09
We skip the QB code and we fill external account ids automatically on creation with a sequence See: https://github.com/basecamp/fizzy-saas/pull/7
31 lines
1.1 KiB
Plaintext
31 lines
1.1 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: signup_completion_path, scope: "signup", class: "flex flex-column gap", data: { controller: "form" } do |form| %>
|
|
<%= 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 %>
|