-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmail.html
More file actions
109 lines (97 loc) · 2.32 KB
/
Copy pathmail.html
File metadata and controls
109 lines (97 loc) · 2.32 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<head> </head>
<body>
<div class="card">
<div class="header">
<img
src="https://lxilsopqfrtwsitzalkm.supabase.co/storage/v1/object/public/avatars/dvb_signature.png"
/>
</div>
<div class="body sushi">
<h2>Bravo pour ta sélection en tant que membre projet !</h2>
<p>
Tu as maintenant accès au portail des commandes de DaVinciBot, viens vite créer ton compte
pour transformer tes idées en prototype concret !
</p>
<a href="https://www.davincibot.fr/login" class="btn">Créer mon compte</a>
</div>
<div class="footer">
<p>DaVinciBot ©️ 2024</p>
<div class="url">
<a href="https://www.davincibot.fr">Site web</a>
<a href="https://www.linkedin.com/company/davincibot">Linkedin</a>
<a href="https://www.instagram.com/davincibot_pulv">Instagram</a>
<a href="mailto:davincibot@devinci.fr">Contact</a>
</div>
<div>
<p class="ftext">
Made with ❤️ by <a href="http://github.com/urbskali" id="github">@urbskali</a>
</p>
</div>
</div>
</div>
<style>
* {
font-family: 'Helvetica', 'Arial', sans-serif;
}
body,
html {
margin: 0;
padding: 0;
}
.card {
display: flex;
flex-direction: column;
align-content: center;
flex-wrap: wrap;
justify-content: center;
align-items: center;
border-radius: 0.625rem;
background-color: #f8fafd;
padding: 5px;
text-align: center;
}
img {
width: 100px;
margin-bottom: 20px;
margin-top: 20px;
}
.sushi {
padding: 20px;
border-radius: 0.625rem;
background-color: #fff;
margin-bottom: 20px;
}
.btn {
display: inline-block;
padding: 10px 20px;
margin: 10px 0;
border-radius: 0.625rem;
background-color: #0333ff;
color: #fff !important;
text-decoration: none;
}
.ftext {
--tab-thickness: 2px;
font-family: 'Segoe UI', Tahoma, sans-serif;
font-size: 75%;
--google-font-color-materialiconstwotone: none;
scrollbar-color: #23da87 #ffffff;
color: rgb(197, 197, 197);
}
#github {
--tab-thickness: 2px;
font-family: 'Segoe UI', Tahoma, sans-serif;
--google-font-color-materialiconstwotone: none;
scrollbar-color: #23da87 #ffffff;
color: rgb(197, 197, 197);
}
.url a {
margin: 0 10px;
color: #0333ff;
text-decoration: none;
}
#made-with-supabase {
display: none !important;
}
</style>
</body>