Faculty and Course Forms

This commit is contained in:
Harshitha Shetty
2024-12-04 03:54:40 +05:30
parent e9b57359f1
commit 2f0597cb1e
14 changed files with 325 additions and 46 deletions

View File

@@ -0,0 +1,31 @@
// CourseForm.js
import React from "react";
import { useParams } from "react-router-dom";
import "./CourseForm.css";
const CourseForm = () => {
const { id } = useParams(); // Get the course ID from the URL params
return (
<div className="form-container">
<h2>Course Info</h2>
<form>
<label>
Course ID:
<input type="text" value={id} readOnly />
</label>
<label>
Course Name:
<input type="text" placeholder="Enter course name" />
</label>
<label>
Status:
<input type="text" placeholder="Enter course status" />
</label>
<button type="submit">Submit</button>
</form>
</div>
);
};
export default CourseForm;