forked from CSI-KJSCE/appointment_to_examiner
Faculty and Course Forms
This commit is contained in:
31
client/src/Pages/FacultyForm.jsx
Normal file
31
client/src/Pages/FacultyForm.jsx
Normal file
@@ -0,0 +1,31 @@
|
||||
// FacultyForm.js
|
||||
import React from "react";
|
||||
import { useParams } from "react-router-dom";
|
||||
import "./FacultyForm.css";
|
||||
|
||||
const FacultyForm = () => {
|
||||
const { id } = useParams(); // Get the faculty ID from the URL params
|
||||
|
||||
return (
|
||||
<div className="form-container">
|
||||
<h2>Faculty Info</h2>
|
||||
<form>
|
||||
<label>
|
||||
Faculty ID:
|
||||
<input type="text" value={id} readOnly />
|
||||
</label>
|
||||
<label>
|
||||
Faculty Name:
|
||||
<input type="text" placeholder="Enter faculty name" />
|
||||
</label>
|
||||
<label>
|
||||
Department:
|
||||
<input type="text" placeholder="Enter department" />
|
||||
</label>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default FacultyForm;
|
||||
Reference in New Issue
Block a user