Articles on: Additional Modules

Custom certificate - in our own corporate style

If you have a paid Pluvo subscription, you can create certificates based on two templates. Do you want your own certificate in Pluvo - entirely in your own style? That's also possible!

The two options are discussed in more detail below:




1) Custom Certificate Made by Pluvo



Let our design team work on creating your own unique design! Customizing a template requires tailored work, and we charge €500 for this service. We ensure that your layout is incorporated into the certificate, and the fields on the custom design can be automatically filled. The fields that can be included on the certificate are:

Title
Course Name [dynamic - adapts to the course]
Learner's Name [dynamic - adapts to the learner]
Date [dynamic - adapts to the issuance date]
Descriptive text
Signature
Logo

You can choose which fields appear on the certificate. You can omit fields on your design, and we'll ensure that these fields are not printed. Also, you can choose which parts of the certificate should have primary or secondary colors. It's possible to adjust the colors later.

Submit your design in HTML or PDF format, and after confirmation, we'll prepare it for you.

Want your own certificate in Pluvo? Send an email including your design to info@pluvo.co!

2) Design Your Own Certificate Template in HTML



Do you have the skills to develop your certificate template in HTML?

Below are examples of HTML data needed to fill the certificate. Then, simply upload your template in Pluvo.
You can set a font for your certificate. Please note that only Google Fonts can be used.

Want to add images? This is possible too. Images must be used inline. You can upload images to a website like this and then use the code in your template.

Simple Certificate


<html>
<head>
<style>
body {
color: #;
background-color: #;
width:100%;
height:100%;
text-align: center;
}
</style>
</head>
<body>

<img src="#">

<h1>#</h1>
<h2>#</h2>

<h3>#</h3>
<p>#</p>

{% if signature %}
<img src="#">
{% endif %}

<p>#</p>
<p>#</p>

</body>
</html>

Certificate with Module List including Score and Time Indication


<html>
<head>
<style>
body {
color: #;
background-color: #;
}
</style>
</head>
<body>

<img src="#">

<h1>#</h1>
<h2>#</h2>
<h3>#</h3>
<p>#</p>

{% if signature %}
<img src="#">
{% endif %}

<p>#</p>
<p>#</p>
<p>#</p>


#

{% if show_courses %}
{% for pageno, page in paginate(progress, 10) %}

<table><tr>
<th>course</th>
{% if show_course_score %}<th>score</th>{% endif %}
{% if show_course_time_spent %}<th>time spent</th>{% endif %}
</tr>

{% for p in page %}
<tr>
<th>#</th>
{% if show_course_score %}
<th>#%</th>
{% endif %}
{% if show_course_time_spent %}
<th>#</th>
{% endif %}
</tr>
{% endfor %}

<tr><td colspan=3>#</td></tr>
</table>
{% endfor %}
{% endif %}


</body>
</html>

Upload Your Own Certificate Template



Once your design is ready, you can upload the template in Pluvo using the dropdown menu. Choose the 'updated' option and add the file. Afterward, your custom certificate will be ready for use!

Updated on: 11/03/2024

Was this article helpful?

Share your feedback

Cancel

Thank you!