Re-scrutiny Result HSC 2024 – Dhaka

Re-scrutiny Result HSC 2024

* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}

body {
display: flex;
justify-content: center;
min-height: 100vh;
background-color: #f0f2f5;
}

.result-form {
width: 100%;
max-width: 900px;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}

.board-info {
background-color: #5e841f;
color: white;
text-align: center;
overflow: hidden;
}

.board-info img {
height: 100px;
}

.board-info h3 {
margin-bottom: 10px;
}

.find-form {
padding: 15px;
background-color: #f0f2f5;
margin-bottom: 20px;
}

.result-form h2 {
text-align: center;
margin-bottom: 10px;
margin-top: 10px;
color: #333333;
}

.form-group input {
width: 100%;
padding: 10px;
font-size: 14px;
border: 1px solid #ddd;
border-radius: 4px;
}

.form-group input:focus {
outline: none;
border-color: #007bff;
}

.btn-submit {
padding: 10px;
font-size: 16px;
color: #ffffff;
background-color: #007bff;
border: none;
border-radius: 4px;
cursor: pointer;
}

.btn-submit:hover {
background-color: #0056b3;
}

.print_head {
display: none;
}

.loading-spinner {
border: 8px solid #f3f3f3;
border-top: 8px solid #007bff;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 20px auto;
}

@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

Board Logo

Board of Intermediate and Secondary Education, Dhaka

Re-scrutiny Result HSC 2024

function get_result(exam = ”, year = ”) {

$(“#result_sheet”).html(“”);
let roll = $(“#roll”).val();
let reg = $(“#reg”).val();
if (roll.length != 6) {
alert(“Enter 6 Digit Roll No.”);
} else if (reg.length != 10) {
alert(“Enter 10 Digit Registration No.”)
} else {
$(‘#loadingSpinner’).show();
$.post(“https://efile.dhakaeducationboard.gov.bd/index.php/result/rscsheet”, {
exam: exam,
year: year,
roll: roll,
reg: reg
}, function (data) {
$(“#result_sheet”).html(data);
$(‘#loadingSpinner’).hide();
});
}
}

function print_result() {
var result = document.getElementById(“printarea”).innerHTML;

// Open a new popup window
var popupWin = window.open(”, ‘_blank’, ‘width=700,height=1100’);
popupWin.document.open();
popupWin.document.write(`

Print Result

${result}

`);
popupWin.document.close();
}