<%= javascript_pack_tag "colorPicker", defer: true %>

Join An Organization

Do you have the secret code?
<%= form_tag "/users/join_org" do %>
<%= label_tag :org_secret, "Secret" %> <%= text_field_tag :org_secret, nil, placeholder: "Provided to you by an org admin" %>
<%= submit_tag "Join Organization" %>
<% end %>


Or Create An Organization

Starred fields are required <%= form_for @organization do |f| %>
<%= f.label :name, "Name *" %> <%= f.text_field :name %>
<%= f.label :slug, "Username *" %> <%= f.text_field :slug %> Your organization URL will be dev.to/{username}
<%= f.label :profile_image, "Profile Image *" %> <%= f.file_field :profile_image %>
<%= f.label :twitter_username, "Twitter Username" %> <%= f.text_field :twitter_username %>
<%= f.label :github_username, "Github Username" %> <%= f.text_field :github_username %>
<%= f.label :text_color_hex, "Text color (hex)" %> <%= text_field_tag "organization[text_color_hex]", "#000000", placeholder: "Click for color picker", class: "color-picker" %>
<%= f.label :bg_color_hex, "Background color (hex)" %> <%= text_field_tag "organization[bg_color_hex]", "#FFFFFF", placeholder: "Click for color picker", class: "color-picker" %>
<%= f.label :url, "Website url *" %> <%= f.url_field :url, placeholder: "https://yoursite.com" %>
<%= f.label :summary, "Summary *" %> <%= f.text_area :summary %>
<%= f.label :proof, "Proof *" %> <%= f.text_area :proof, placeholder: "This is just a quick blurb indicating or link that shows that you clearly are associated with this organization." %>
You must have your organization's permission to submit this form. Dishonesty may result in a permanent suspension.
<%= f.submit "SUBMIT", class: "cta" %>
<% end %>