%= javascript_packs_with_chunks_tag "colorPreview", "validateFileInputs", defer: true %>
Join An Organization
<%= form_tag "/users/join_org" do %>
<%= label_tag :org_secret, "Secret code", class: "crayons-field__label" %>
Provided to you by an org admin
<%= text_field_tag :org_secret, nil, placeholder: "...", class: "crayons-textfield", autocomplete: "off" %>
<% end %>
<%= form_for @organization, html: { class: "grid gap-6" } do |f| %>
<%= f.label :name, "Name *", class: "crayons-field__label" %>
<%= f.text_field :name, class: "crayons-textfield", placeholder: "Acme Inc." %>
<%= f.label :slug, "Username *", class: "crayons-field__label" %>
<%= f.text_field :slug, class: "crayons-textfield", placeholder: "acmeinc" %>
Your organization URL will be <%= app_url %>/{username}
<%= f.label :profile_image, "Profile image *", class: "crayons-field__label" %>
<%= f.file_field :profile_image, accept: "image/*", class: "crayons-card crayons-card--secondary p-3 flex items-center flex-1 w-100" %>
<%= f.label :twitter_username, "Twitter username", class: "crayons-field__label" %>
<%= f.text_field :twitter_username, class: "crayons-textfield" %>
<%= f.label :github_username, "GitHub username", class: "crayons-field__label" %>
<%= f.text_field :github_username, class: "crayons-textfield" %>
<%= render partial: "shared/logo_design", locals: { f: f, account: @user } %>
<%= f.label :url, "Website url *", class: "crayons-field__label" %>
<%= f.url_field :url, placeholder: "https://yoursite.com", class: "crayons-textfield" %>
<%= f.label :summary, "Summary *", class: "crayons-field__label" %>
<%= f.text_area :summary, class: "crayons-textfield", rows: 3, placeholder: "..." %>
<%= f.label :proof, "Proof *", class: "crayons-field__label" %>
This is just a quick blurb indicating or link that shows that you clearly are associated with this organization.
<%= f.text_area :proof, placeholder: "...", class: "crayons-textfield" %>
You must have your organization's permission to submit this form. Dishonesty may result in a permanent suspension.
<% end %>