I am trying to modify this code:
<?xml version="1.0" encoding="unicode"?>
<xsl:stylesheet xmlns:xsl="
xmlns

sxml="osxml" version="1.0">
<_locDefinition>
<_locDefault _loc="locData"/>
<_locTag _locAttrData="pad-left,pad-right">p</_locTag>
<_locTag _locAttrData="height,width">textarea</_locTag>
<_locTag _locAttrData="minsize,noindent">select</_locTag>
<_locTag _locAttrData="size">progressbar</_locTag>
<_locTag _locAttrData="size,maxlen">input</_locTag>
<_locTag _locAttrData="value">osxml:update</_locTag>
</_locDefinition>
<xsl:template match="fve-bad-pcr-registers">
<osxml:text-mode-ui>
<head>
<footer color="RGBIXXXX"><xsl:text> ENTER=Continue</xsl:text></footer>
<meta key="ENTER" action="continue"/>
</head>
<body background-color="XXXX" foreground-color="RGBX">
<font foreground-color="RGBI">
Windows BitLocker Drive Encryption Information<br/>
</font>
<br/>
<br/>
The system boot information has changed since BitLocker was enabled.<br/>
<br/>
You must supply a BitLocker recovery password to start this system.<br/>
<br/>
Confirm that the changes to the system boot information are authorized.<br/>
<br/>
If the changes to the system boot information are trusted, then disable and re-enable BitLocker. This will reset BitLocker to use the new boot information.<br/>
<br/>
Otherwise restore the system boot information.<br/>
<br/>
</body>
</osxml:text-mode-ui>
</xsl:template>
to have this format
<header>
Windows BitLocker Drive Encryption Information<\header>
description of bitlocker
footer:
continue press alt-c or boot alt-b.
with various colors and at the end a prompt that says "would you like to contine or boot?
John