blob: f1e32789b04b4f0f5dfe41184a0bf71c6a0abe17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:import href="base.xslt"/>
<xsl:template name="title">Welcome to Gentoo Browse</xsl:template>
<xsl:template name="content">
<section>
<h2 class="page-header">Confirmation</h2>
<p>
Click <a>
<xsl:attribute name="href">
<xsl:text>https://gentoobrowse.randomdan.homeip.net/user/verification/</xsl:text>
<xsl:value-of select="verifyguid" />
<xsl:text>/</xsl:text>
<xsl:value-of select="username" />
</xsl:attribute>
<xsl:text>here</xsl:text>
</a> to confirm your account.
</p>
<p>Or alternatively, copy and paste this code into the confirmation page: <xsl:value-of select="verifyguid" /></p>
</section>
</xsl:template>
</xsl:stylesheet>
|