blob: 92df6ec6dce05137f09dfdc5304297b1b9ea85ff [file] [log] [blame]
#!/usr/bin/env python3
import sys
sys.stdout.write(
'Content-Security-Policy: img-src \'none\'; report-uri resources/save-report.py\r\n'
'Content-Type: text/html\r\n\r\n'
'<!DOCTYPE html>\n'
'<html>\n'
'<body>\n'
' <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==">\n'
' <script src="resources/go-to-echo-report.js"></script>\n'
'</body>\n'
'</html>\n'
)