63 lines
3.3 KiB
Plaintext
63 lines
3.3 KiB
Plaintext
|
|
<div
|
||
|
|
class="min-h-full flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8"
|
||
|
|
>
|
||
|
|
<div class="max-w-md w-full space-y-8">
|
||
|
|
<h2 class="mt-10 text-center text-2xl font-extrabold text-[#CD7F32]">
|
||
|
|
Add Invited Web Account
|
||
|
|
</h2>
|
||
|
|
<%= form_with url: create_web_employer_admins_path, method: :post, local: true do |f| %>
|
||
|
|
<div class="mt-8 space-y-6">
|
||
|
|
Employers
|
||
|
|
<div class="rounded-md shadow-sm -space-y-px">
|
||
|
|
<div>
|
||
|
|
<%= f.label :employer %>
|
||
|
|
<%= f.collection_select :employer, @employers, :id, :name, { include_blank: "Select an Employer" }, { class: "custom-select" } %>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<%= f.label :email %>
|
||
|
|
<%= f.email_field :email, id: "email-address", autofocus: true, autocomplete: "email", placeholder: "Email address", class: "appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-300 placeholder-bluetang text-deepcove rounded-t-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm" %>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<%= f.submit "Create Employer Account", { class: "relative w-full flex justify-center py-2 px-4 border-4 font-bold rounded-lg text-platinum" } %>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<% end %>
|
||
|
|
<%= form_with url: create_web_broker_admins_path, method: :post, local: true do |f| %>
|
||
|
|
<div class="mt-8 space-y-6">
|
||
|
|
Brokers
|
||
|
|
<div class="rounded-md shadow-sm -space-y-px">
|
||
|
|
<div>
|
||
|
|
<%= f.label :broker %>
|
||
|
|
<%= f.collection_select :broker, @brokers, :id, :name, { include_blank: "Select a Broker" }, { class: "custom-select" } %>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<%= f.label :email %>
|
||
|
|
<%= f.email_field :email, id: "email-address", autofocus: true, autocomplete: "email", placeholder: "Email address", class: "appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-300 placeholder-bluetang text-deepcove rounded-t-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm" %>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<%= f.submit "Create Broker Account", { class: "relative w-full flex justify-center py-2 px-4 border-4 font-bold rounded-lg text-platinum" } %>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<% end %>
|
||
|
|
<%= form_with url: create_web_carrier_admins_path, method: :post, local: true do |f| %>
|
||
|
|
<div class="mt-8 space-y-6">
|
||
|
|
Carriers
|
||
|
|
<div class="rounded-md shadow-sm -space-y-px">
|
||
|
|
<div>
|
||
|
|
<%= f.label :carrier %>
|
||
|
|
<%= f.collection_select :carrier, @carriers, :id, :name, { include_blank: "Select a Broker" }, { class: "custom-select" } %>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<%= f.label :email %>
|
||
|
|
<%= f.email_field :email, id: "email-address", autofocus: true, autocomplete: "email", placeholder: "Email address", class: "appearance-none rounded-none relative block w-full px-3 py-2 border border-gray-300 placeholder-bluetang text-deepcove rounded-t-md focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 focus:z-10 sm:text-sm" %>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<%= f.submit "Create Carrier Account", { class: "relative w-full flex justify-center py-2 px-4 border-4 font-bold rounded-lg text-platinum" } %>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<% end %>
|
||
|
|
</div>
|
||
|
|
</div>
|