-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmailTemplate.html
51 lines (41 loc) · 1.24 KB
/
mailTemplate.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
<html>
<head>
<title>SUPERENALOTTO</title>
<style>
table, table td, table th {
border: 1px solid black;
}
th, td {
padding:10px;
}
</style>
</head>
<h1>Estrazione del <!--dataEstrazione--></h1>
<h3><span style="color:blue"><!--numbers--></span></h3>
<h3>Jolly: <span style="color:blue"><!--jolly--></span> - Superstar: <span style="color:blue"><!--superstar--></span></h3>
<hr>
<h1>Risultati ultima estrazione</h1>
<h3 style="">Giocata 1</h3>
<h4><span style="color:green"><!--giocati1--></span>: <span style="color:red"><!--risGiocata1--></span><h4>
<h3>Giocata 2</h3>
<h4><span style="color:green"><!--giocati2--></span>: <span style="color:red"><!--risGiocata2--></span><h4>
<hr>
<h3>Giocatore attuale: <span style="color:red"><!--currentGiocatore--></span><h3>
<h3>Giocatore successivo: <span style="color:red"><!--nextGiocatore--></span><h3>
<h3>Data prossima estrazione: <span style="color:red"><!--prossimaEstrazione--></span><h3>
<hr>
<h1 style="text-align:center">Storico estrazioni</h1>
<table align="center" style="text-align:center">
<thead>
<tr>
<th>Data Estrazione</th>
<th>Numeri Estratti</th>
<th>Risultato Giocata 1</th>
<th>Risultato Giocata 2</th>
</tr>
</thead>
<tbody>
<!--tableContent-->
</tbody>
</table>
</html>