diff --git a/app/views/recipe_foods/new.html.erb b/app/views/recipe_foods/new.html.erb
new file mode 100644
index 0000000..0ba9671
--- /dev/null
+++ b/app/views/recipe_foods/new.html.erb
@@ -0,0 +1,20 @@
+
+
+ <%= form.hidden_field :recipe_id, value: @recipe_id %>
+
+
+ <%= form.label :name %>
+ <%= form.collection_select(:food_id, Food.all, :id, :name, { prompt: "Select a Food" }, { class: "form-select" }) %>
+
+
+
+ <%= form.label :quantity %>
+ <%= form.number_field :quantity, autofocus: true, autocomplete: "quantity", placeholder: "Quantity" %>
+
+
+ <%= form.submit 'Add Food to Recipe', class: "btn btn-primary mt-3"%>
+
+
+<% end %>
\ No newline at end of file