<% if params[:redir].to_s.ends_with?('on_premise') %>

DocuSeal Console

Sign up in DocuSeal Console to upgrade. On-premises app is completely standalone, Console is used only to manage your license.
<% else %> <%= render 'devise/shared/select_server' if Docuseal.multitenant? %>

Create Free Account

<% end %> <%= form_for(User.new, html: { class: 'space-y-6' }, url: new_registration_path, data: { turbo: params[:redir].blank? }, method: :get) do |f| %> <% if params[:redir].present? %> <%= hidden_field_tag :redir, params[:redir] %> <% end %>
<%= f.label :email, class: 'label' %> <%= f.email_field :email, autofocus: true, autocomplete: 'email', class: 'base-input', placeholder: 'Enter email to continue' %>
<%= f.button button_title(title: 'Sign up', disabled_with: 'Sign up'), name: 'sign_up', value: true, class: 'base-button' %>
<% end %> <% if devise_mapping.omniauthable? %>
<% if User.omniauth_providers.include?(:google_oauth2) %> <%= form_for '', url: omniauth_authorize_path(resource_name, :google_oauth2), data: { turbo: false }, method: :post do |f| %> <%= hidden_field_tag :state, { redir: params[:redir].to_s }.compact_blank.to_query %> <%= f.button button_title(title: 'Sign up with Google', icon: svg_icon('brand_google', class: 'w-6 h-6')), class: 'white-button w-full mt-4' %> <% end %> <% end %> <% if User.omniauth_providers.include?(:microsoft_office365) %> <%= form_for '', url: omniauth_authorize_path(resource_name, :microsoft_office365), data: { turbo: false }, method: :post do |f| %> <%= hidden_field_tag :state, { redir: params[:redir].to_s }.compact_blank.to_query, id: 'state_microsoft' %> <%= f.button button_title(title: 'Sign up with Microsoft', icon: svg_icon('brand_microsoft', class: 'w-6 h-6')), class: 'white-button w-full' %> <% end %> <% end %>
<% end %> <%= render 'devise/shared/links' %>