#!/usr/bin/perl -w
use strict;
print << "EOF";
Content-type: text/html
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" src="/images/favicon.gif" />
<title>XKCD Password Generator - Old and Busted</title>
<style type="text/css">
* {
font-family: sans-serif;
color: #fff;
background: #000;
text-align: center;
margin: 2em auto;
}
p {
font-size: 2em;
}
</style>
</head>
<body>
<div>
<p>
This page is deprecated. Try <a href="../javascript/xkcdpass.html">the new one</a> instead.
</p>
</div>
</body>
</html>
EOF