-
Notifications
You must be signed in to change notification settings - Fork 54
/
certificate_template.html
55 lines (49 loc) · 1.28 KB
/
certificate_template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Congratulations on your first PR!</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f2f2f2;
}
.box {
padding: 2rem;
background-color: #fff;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
border-radius: 5px;
}
h1, p {
margin: 0;
padding: 0;
}
h1 {
margin-bottom: 1rem;
font-size: 2rem;
font-weight: bold;
color: #333;
}
p {
font-size: 1.1rem;
color: #444;
}
a {
color: #00bfff;
}
</style>
</head>
<body>
<div class="box">
<h1>Congratulations on your first PR, {{ name }}!</h1>
<p>We are thrilled to have you as a contributor to our project.</p>
<p>Your contribution has been successfully received and merged into our codebase. You can find your PR at:</p>
<p><a href="https://github.com/DSC-Bennett-University/not-certbot/commit/{{ hash }}">Your commit as a proof!</a></p>
<p>Thank you again for your contribution and we hope to see more from you in the future!</p>
</div>
</body>
</html>