-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.cfm
35 lines (31 loc) · 1004 Bytes
/
index.cfm
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
<cfset DSAReport = new lib.DSAReport() /><!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex,nofollow,noarchive,nosnippet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meldung rechtswidriger Inhalt</title>
<link href="./DSAReport.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<cfinclude template="./lib/formTemplate.inc.html" />
<template id="emailBodyTemplate"><cfinclude template="./lib/mailbodyTemplate.inc.html" /></template>
<template id="wsSubmitResultTemplate">
<div class="ws-success-{{success}}">
<div class="ws-info">{{info}}</div>
<div class="ws-message">{{message}}</div>
</div>
</template>
<script src="./DSAReport.js"></script>
<script>
<cfoutput>
DSAReportSetup(
'#DSAReport.getMailrecipient()#',
#SerializeJSON(DSAReport.getDsaAllowDomains())#,
'#DSAReport.getWebserviceURL()#',
'#DSAReport.generateCSRFToken()#'
);
</cfoutput>
</script>
</body>
</html>