Spaces:
Sleeping
Sleeping
<html> | |
<head> | |
<title>Student Placement Prediction</title> | |
<style> | |
body { font-family: Arial, sans-serif; margin: 40px; } | |
label { display: inline-block; width: 200px; } | |
input, select { margin-bottom: 10px; } | |
</style> | |
</head> | |
<body> | |
<h1>Student Placement Prediction</h1> | |
<form action="/predict" method="post"> | |
<label for="CGPA">CGPA:</label> | |
<input type="number" step="0.1" id="CGPA" name="CGPA" required><br> | |
<label for="Internships">Internships:</label> | |
<input type="number" id="Internships" name="Internships" required><br> | |
<label for="Projects">Projects:</label> | |
<input type="number" id="Projects" name="Projects" required><br> | |
<label for="Workshops_Certifications">Workshops/Certifications:</label> | |
<input type="number" id="Workshops_Certifications" name="Workshops_Certifications" required><br> | |
<label for="AptitudeTestScore">Aptitude Test Score:</label> | |
<input type="number" id="AptitudeTestScore" name="AptitudeTestScore" required><br> | |
<label for="SoftSkillRating">Soft Skill Rating:</label> | |
<input type="number" step="0.1" id="SoftSkillRating" name="SoftSkillRating" required><br> | |
<label for="ExtracurricularActivities">Extracurricular Activities:</label> | |
<select id="ExtracurricularActivities" name="ExtracurricularActivities" required> | |
<option value="Yes">Yes</option> | |
<option value="No">No</option> | |
</select><br> | |
<label for="PlacementTraining">Placement Training:</label> | |
<select id="PlacementTraining" name="PlacementTraining" required> | |
<option value="Yes">Yes</option> | |
<option value="No">No</option> | |
</select><br> | |
<label for="SSC_Marks">SSC Marks:</label> | |
<input type="number" id="SSC_Marks" name="SSC_Marks" required><br> | |
<label for="HSC_Marks">HSC Marks:</label> | |
<input type="number" id="HSC_Marks" name="HSC_Marks" required><br> | |
<button type="submit">Predict</button> | |
</form> | |
{% if prediction %} | |
<h2>Prediction: {{ prediction }}</h2> | |
{% endif %} | |
</body> | |
</html> | |