We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5798f93 commit d108d1bCopy full SHA for d108d1b
frontend/src/components/CreateJobModal.jsx
@@ -29,10 +29,12 @@ function CreateJobModal(props) {
29
const title = formData.get("title");
30
const description = formData.get("description");
31
const location = formData.get("location");
32
+ const company_name = formData.get("company_name")
33
const data = {
34
title,
35
description,
36
location,
37
+ company_name,
38
min_salary,
39
max_salary,
40
};
@@ -74,6 +76,7 @@ function CreateJobModal(props) {
74
76
<DialogTitle>Create New Job</DialogTitle>
75
77
<form className="form" onSubmit={submitNewJob}>
78
<TextField name="title" label="Job Title" required />
79
+ <TextField name="company_name" label = "Company Name" required />
80
<TextField
81
name="description"
82
label="Job Description"
0 commit comments