kissingcomputer/app/views/profiles/edit.html.erb

39 lines
736 B
Text
Raw Normal View History

2026-01-10 16:17:07 +00:00
<h1>Edit Profile</h1>
<section class="article">
<%= form_with model: (@profile) do |form| %>
<% if @profile.errors.any? %>
<p>Oopsiesssssss u fucked up</p>
<% end %>
<p>
<%= form.label :avatar_image %><br />
<%= form.file_field :avatar_image %>
<p>
<p>
<%= form.label :name %><br>
<%= form.text_area :name %>
</p>
<p>
<%= form.label :bio %><br>
<%= form.rich_text_area :bio %>
</p>
<p>
<%= form.label :age %><br>
<%= form.text_area :age %><br>
</p>
<p>
<%= form.label :pronouns %><br>
<%= form.text_area :pronouns %><br>
</p>
<%= form.label :website %><br>
<%= form.text_area :website %><br>
</p>
<%= form.submit %>
<% end %>
</section>