-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.html
70 lines (69 loc) · 1.73 KB
/
report.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>매일 메일</title>
</head>
<body style="margin: 0; padding: 0">
<div
style="
height: 100%;
width: 100%;
font-family: Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
"
>
<div
style="
background-color: #ffffff;
padding: 40px;
border-radius: 8px;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 400px;
width: 100%;
"
>
<a
href="https://maeil-mail.vercel.app"
style="
display: block;
margin-bottom: 20px;
text-decoration: none;
color: #000000;
font-size: 28px;
font-weight: bold;
"
>
매일 메일
</a>
<div
style="
background-color: #f1f3f5;
padding: 20px;
border-radius: 8px;
margin-bottom: 30px;
text-align: left;
"
>
<b style="color: #212529; font-size: 18px">관리자 일일 보고</b>
<p
style="
font-size: 24px;
font-weight: bold;
line-height: 1.5;
color: #495057;
margin: 10px 0 0;
"
th:text="${report}"
>
</p>
</div>
</div>
</div>
</body>
</html>