2026-02-14 07:57:18 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
|
<xsl:output method="html" encoding="utf-8" indent="yes"/>
|
|
|
|
|
|
|
|
|
|
<xsl:param name="USER-TEMP-PASSWORD"/>
|
|
|
|
|
|
|
|
|
|
<xsl:template match="/">
|
|
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
font-family: Calibri ,Arial, Helvetica, sans-serif;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
th {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
text-align: left;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
padding-bottom: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td {
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
padding-bottom: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<p class="text">
|
|
|
|
|
Dear <xsl:value-of select="//users/record/user_name"/>,
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p class="text">Your password has been reset. Below are your account credentials.</p>
|
|
|
|
|
|
|
|
|
|
<p class="text">Password: <xsl:value-of select="$USER-TEMP-PASSWORD"/></p>
|
|
|
|
|
|
2026-05-03 08:11:45 -04:00
|
|
|
<p class="text">Click <a href="https://apps.realestatedatainc.com/atlhousingreport/main.php" target="_blank">here</a> to Login.</p>
|
2026-02-14 07:57:18 -05:00
|
|
|
|
|
|
|
|
<p class="text">Thank you,</p>
|
|
|
|
|
|
|
|
|
|
<p class="text">DEC-International Support</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
<br/>
|
|
|
|
|
<br/> <!-- Line Breaks before email Disclaimer -->
|
|
|
|
|
|
|
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|