-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage.html
More file actions
53 lines (53 loc) · 1.42 KB
/
message.html
File metadata and controls
53 lines (53 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
.title {
color: #75B9BE;
}
.hidden {
overflow: hidden;
text-align: left;
}
table {
border: 1px solid #eee;
border-radius: 5px !important;
}
table th {
background-color: #CAD461;
font-size: 1.2em;
letter-spacing: .1em;
text-transform: uppercase;
text-align: center;
}
table td {
font-size: 0.75em;
letter-spacing: .1em;
}
</style>
</head>
<body>
<h1 class="title"> iPC Nextcloud : File warning </h1>
<h3> Dear {{ name }}, </h3>
<p> Some of the contents uploaded into your group folder are suspicious and/or inappropriate. </p>
<p> Please, delete them or send us an email to <span style="color:#75B9BE"> support.ipc-project@bsc.es </span> in case they are valid. </p>
<div class="hidden">
<table>
<thead>
<tr>
<th>Group</th>
<th>Path</th>
<th>Status</th>
<th>md5</th>
</tr>
</thead>
<tbody>
{% block content %}{% endblock %}
</tbody>
</table>
</div>
<br/>
<p> Best regards, </p>
<p> iPC Nextcloud Team </p>
</body>
</html>