17 lines
532 B
HTML
17 lines
532 B
HTML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:template match="/">
|
|
<html>
|
|
<head>
|
|
<title>Membership Error</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<p>An error occurred while processing your request for an account.</p>
|
|
<p>Please try again and if the problem persists, contact the site administrator.</p>
|
|
<p>Thank you.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
</xsl:stylesheet> |