36459-vm/certificates/preview_certificate.php
2026-05-27 14:29:58 +05:30

54 lines
1.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
include __DIR__ . '/../includes/header.php';
?>
<section class="section">
<div class="container">
<div style="margin-bottom:26px;">
<h1 style="font-size:26px; font-weight:800;">Certificate Preview</h1>
<p style="color:var(--muted);">
This is how the official certificate will appear for students.
</p>
</div>
<div class="certificate">
<img src="/rs_lab/assets/rs_logo.png" style="height:60px; margin-bottom:20px;">
<h2 style="letter-spacing:1px;">Certificate of Participation</h2>
<p style="margin-top:16px;">This is to certify that</p>
<div class="student-name">Gokul</div>
<p>
has actively participated in the RS Learning Lab Coding Challenge Program
and demonstrated consistent learning effort.
</p>
<h4 style="margin-top:24px;">Demonstrated Skills</h4>
<p>Logical Thinking · Problem Solving · Coding Fundamentals</p>
<div style="margin-top:40px; text-align:left;">
<img src="/rs_lab/assets/signature.png" style="height:50px;">
<div class="signature-name">Gokula Krishnan</div>
<div style="font-size:13px; color:var(--muted);">
Founder RS Learning Lab
</div>
</div>
</div>
<div style="margin-top:26px;">
<a href="generate_certificate_pdf.php" class="btn btn-primary">
Download Official Certificate (PDF)
</a>
</div>
</div>
</section>
<?php
include __DIR__ . '/../includes/footer.php';
?>