Skip to content

Commit ce4c038

Browse files
committed
Feature improvement
1 parent 91b6d76 commit ce4c038

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

src/components/loginForms/recruiterSignup.tsx

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,21 @@ export default function RecruiterSignup() {
357357
</div>
358358
<div className="space-y-2">
359359
<Label className="text-sm font-medium text-gray-700">Category *</Label>
360-
<Input placeholder="e.g., Technology, Finance" onChange={(e) => handleCompanyInfoChange('category', e.target.value)} className="h-11"/>
360+
<Select
361+
value={companyInfo.category}
362+
onValueChange={(value) => handleCompanyInfoChange('category', value)}
363+
>
364+
<SelectTrigger className="h-11">
365+
<SelectValue placeholder="Select company category" />
366+
</SelectTrigger>
367+
<SelectContent>
368+
{["PUBLIC", "GOVERNMENT", "PSU", "MNC"].map((category) => (
369+
<SelectItem key={category} value={category}>
370+
{category}
371+
</SelectItem>
372+
))}
373+
</SelectContent>
374+
</Select>
361375
</div>
362376
</div>
363377

0 commit comments

Comments
 (0)