|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
| 6 | + <title>Bonafide Certificate Generator</title> |
| 7 | + <link rel="stylesheet" href="style.css" /> |
| 8 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js"></script> |
| 9 | +</head> |
| 10 | +<body> |
| 11 | + |
| 12 | + <div class="header"> |
| 13 | + <h1>BUDDHA INSTITUTE OF TECHNOLOGY</h1> |
| 14 | + <h3>Industrial Area, Gaya</h3> |
| 15 | + <h2>Bonafide Generator</h2> |
| 16 | + </div> |
| 17 | + |
| 18 | + <div class="input-form"> |
| 19 | + <div class="form-group"> |
| 20 | + <label for="student-name">Name:</label> |
| 21 | + <input type="text" id="student-name" placeholder="Rohit Kumar" /> |
| 22 | + </div> |
| 23 | + |
| 24 | + <div class="form-group"> |
| 25 | + <label for="fathers-name">Father's Name:</label> |
| 26 | + <input type="text" id="fathers-name" placeholder="Ramesh Kumar" /> |
| 27 | + </div> |
| 28 | + |
| 29 | + <div class="form-group"> |
| 30 | + <label for="session">Session:</label> |
| 31 | + <input type="text" id="session" placeholder="2020-23" /> |
| 32 | + </div> |
| 33 | + |
| 34 | + <div class="form-group"> |
| 35 | + <label for="course">Course:</label> |
| 36 | + <select id="course"> |
| 37 | + <option value="B.Tech Engineering">B.Tech Engineering</option> |
| 38 | + <option value="Polytechnic Engineering">Polytechnic Engineering</option> |
| 39 | + </select> |
| 40 | + </div> |
| 41 | + |
| 42 | + <div class="form-group"> |
| 43 | + <label for="branch-select">Branch:</label> |
| 44 | + <select id="branch-select"> |
| 45 | + <option value="Civil Engineering">Civil Engineering</option> |
| 46 | + <option value="Electrical Engineering">Electrical Engineering</option> |
| 47 | + <option value="Computer Science & Engineering">Computer Science & Engineering</option> |
| 48 | + <option value="Mechanical Engineering">Mechanical Engineering</option> |
| 49 | + <option value="Electronics Engineering">Electronics Engineering</option> |
| 50 | + </select> |
| 51 | + </div> |
| 52 | + |
| 53 | + <div class="form-group"> |
| 54 | + <label for="roll-no">Roll No:</label> |
| 55 | + <input type="text" id="roll-no" placeholder="123456" /> |
| 56 | + </div> |
| 57 | + |
| 58 | + <div class="form-group"> |
| 59 | + <label for="semester">Promoted Semester:</label> |
| 60 | + <input type="text" id="semester" placeholder="6th" /> |
| 61 | + </div> |
| 62 | + |
| 63 | + <div class="form-group"> |
| 64 | + <label for="fee">Fee Payable:</label> |
| 65 | + <input type="text" id="fee" placeholder="87100/-" /> |
| 66 | + </div> |
| 67 | + |
| 68 | + <div class="form-group"> |
| 69 | + <label for="is-late">Is session running late?</label> |
| 70 | + <select id="is-late"> |
| 71 | + <option value="no">No</option> |
| 72 | + <option value="yes">Yes</option> |
| 73 | + </select> |
| 74 | + </div> |
| 75 | + |
| 76 | + <div class="form-group"> |
| 77 | + <label for="backlog">Reason for delay (if any):</label> |
| 78 | + <input type="text" id="backlog" placeholder="Backlog in 4th sem" /> |
| 79 | + </div> |
| 80 | + |
| 81 | + <div class="button-group"> |
| 82 | + <button id="generate-btn">Generate Certificate</button> |
| 83 | + <!-- <button id="download-btn" class="hidden">Download PDF</button> --> |
| 84 | + </div> |
| 85 | + |
| 86 | + </div> |
| 87 | + |
| 88 | + <div id="certificate" class="hidden"> |
| 89 | + |
| 90 | + <div id="refdate"> |
| 91 | + <p><strong>Ref. No.:-</strong> <span id="refNo"></span></p> |
| 92 | + <p><strong>Date:</strong> <span id="certDate"></span></p> |
| 93 | + </div> |
| 94 | + |
| 95 | + <h2 class="text-center">TO WHOM IT MAY CONCERN</h2> |
| 96 | + |
| 97 | + <p> |
| 98 | + Certified that <strong><span id="certStudent"></span></strong> S/o |
| 99 | + <strong><span id="certFather"></span></strong> had been admitted during |
| 100 | + the session <strong><span id="certSession"></span></strong> in the branch of |
| 101 | + <strong><span id="certBranch"></span></strong> bearing Roll No – |
| 102 | + <strong><span id="certRoll"></span></strong>. He is a bonafide student of |
| 103 | + this institution. He is promoted to <strong><span id="certSemester"></span></strong> |
| 104 | + Semester. The 3rd Year dues payable fee will be <strong><span id="certFee"></span></strong>. |
| 105 | + </p> |
| 106 | + |
| 107 | + <p> |
| 108 | + This Institute has been recognized by A.I.C.T.E through their F.No. |
| 109 | + Northern/1-43657927785/2024/EOA, dated: 08-May-2024 & affiliated to |
| 110 | + SBTE, Patna, Bihar affiliation no. KK(SBTE)02/2022(Part-4)-2957/Patna, |
| 111 | + Dated-30.07.2024 and subsequently recognized by Department of Science & |
| 112 | + Technology, Govt. of Bihar, Patna. |
| 113 | + </p> |
| 114 | + |
| 115 | + <p id="backlog-line" style="display: none;"> |
| 116 | + Session has been running late due to <span id="certBacklog">backlog in 4th sem</span>. |
| 117 | + </p> |
| 118 | + |
| 119 | + <p> |
| 120 | + <strong>Account Holder Name</strong> – Buddha Polytechnic Institute<br /> |
| 121 | + <strong>Bank Name</strong> – State Bank of India<br /> |
| 122 | + <strong>Address</strong> – Gandhi Maidan, Gaya<br /> |
| 123 | + <strong>Account No.</strong> – 36922955550<br /> |
| 124 | + <strong>IFSC</strong> – SBIN0006553 |
| 125 | + </p> |
| 126 | + |
| 127 | + <div class="signature">Principal</div> |
| 128 | + |
| 129 | + <div class="button-group"> |
| 130 | + <button id="download-btn" class="hidden">Download PDF</button> |
| 131 | + </div> |
| 132 | + |
| 133 | + </div> |
| 134 | + |
| 135 | + <script src="script.js"></script> |
| 136 | +</body> |
| 137 | +</html> |
0 commit comments