<%= javascript_pack_tag "colorPreview", defer: true %> <% unless @user.identities.exists?(provider: 'github') %>
" alt="github logo" /> CONNECT GITHUB ACCOUNT
<% end %> <% unless @user.identities.exists?(provider: 'twitter') %>
<%= ApplicationConfig["APP_DOMAIN"] %>/users/auth/twitter/callback" class="big-button cta" data-no-instant> " alt="twitter logo" /> CONNECT TWITTER ACCOUNT
<% end %>

/<%= current_user.username %>" aria-label="Go to your profile page"> DEV badge Add the DEV badge to your personal site. Click here for the code

<%= form_for(@user) do |f| %>
<%= f.label :email %> <%= f.text_field :email %>
<%= f.label :email_public, "Display email on profile" %> <%= f.check_box :email_public %>
<%= f.label :username %> <%= f.text_field :username, maxlength: 30 %>
<%= f.label :name %> <%= f.text_field :name %>
<%= f.label :profile_image %>
<% if @user.profile_image_url.present? %> <%= @user.username %> profile image <%= f.file_field :profile_image %> <% end %>
<%= f.label :looking_for_work %> <%= f.check_box :looking_for_work %>
<%= f.label :looking_for_work_publicly, "Display \"looking for work\" on profile" %> <%= f.check_box :looking_for_work_publicly %>
<%= f.label :contact_consent, "Recruiters can contact me about job opportunities" %> <%= f.check_box :contact_consent %>
<%= f.label :website_url %> <%= f.url_field :website_url, maxlength: 100, placeholder: "https://yoursite.com" %>
<%= f.label :summary %> <%= f.text_area :summary, placeholder: "a short bio.", maxlength: 200 %>
<%= render partial: "shared/logo_design", locals: { f: f, account: @user } %>
<%= f.label :location %> <%= f.text_field :location, maxlength: 100 %>
<%= f.label :education %> <%= f.text_field :education, maxlength: 100 %>
<%= f.label :employer_name %> <%= f.text_field :employer_name, maxlength: 100 %>
<%= f.label :employer_url, "Employer URL" %> <%= f.text_field :employer_url, maxlength: 100 %>
<%= f.label :employment_title %> <%= f.text_field :employment_title, maxlength: 100 %>
<%= f.label :mostly_work_with, "Skills/Languages" %> <%= f.text_area :mostly_work_with, placeholder: "What tools and languages are you most experienced with? Are you specialized or more of a generalist?", maxlength: 500 %>
<%= f.label :currently_learning, "I'm getting into" %> <%= f.text_area :currently_learning, placeholder: "What are you learning right now? What are the new tools and languages you're picking up in #{Time.zone.now.year}?", maxlength: 500 %>
<%= f.label :currently_hacking_on, "My projects and hacks" %> <%= f.text_area :currently_hacking_on, placeholder: "What projects are currently occupying most of your time?", maxlength: 500 %>
<%= f.label :available_for %> <%= f.text_area :available_for, placeholder: "What kinds of collaborations or discussions are you available for? What's a good reason to say hey to you these days?", maxlength: 500 %>

Links

<%= f.label :facebook_url, "Facebook URL" %> <%= f.text_field :facebook_url %>
<%= f.label :stackoverflow_url, "Stack Overflow URL" %> <%= f.url_field :stackoverflow_url %>
<%= f.label :linkedin_url, "LinkedIn URL" %> <%= f.url_field :linkedin_url %>
<%= f.label :behance_url, "Behance URL" %> <%= f.url_field :behance_url %>
<%= f.label :dribbble_url, "Dribbble URL" %> <%= f.url_field :dribbble_url %>
<%= f.label :medium_url, "Medium URL" %> <%= f.url_field :medium_url %>
<%= f.label :gitlab_url, "GitLab URL" %> <%= f.url_field :gitlab_url %>
<%= f.label :instagram_url, "Instagram URL" %> <%= f.url_field :instagram_url %>
<%= f.label :mastodon_url, "Mastodon URL" %> <%= f.url_field :mastodon_url %>
<%= f.label :twitch_url, "Twitch URL" %> <%= f.url_field :twitch_url %>
<%= f.hidden_field :tab, value: @tab %> <%= f.submit "SUBMIT", class: "cta" %>
<% end %>