blob: 609d5973bafb3f5c19dfb04e0cd77fa5813015ae (
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
26
27
28
29
30
|
<?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:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />
<xsl:template name="head">
<title>Sign up · Gentoo Browse</title>
</xsl:template>
<xsl:template name="header">
<h1>Your Gentoo Browse</h1>
<p class="lead">Customise what you like and what you want to hear about.</p>
</xsl:template>
<xsl:template name="content">
<div class="span3 bs-docs-sidebar"/>
<div class="span9">
<xsl:call-template name="form">
<xsl:with-param name="form">
<form action="/user/signup" method="post" caption="Sign up" submit="Sign up">
<input type="text" name="username" caption="User name" required="required"/>
<input type="email" name="email" caption="Email address" required="required"/>
<input type="text" name="realname" caption="Real name" required="required"/>
<input type="password" name="password" caption="Password" required="required"/>
</form>
</xsl:with-param>
</xsl:call-template>
</div>
</xsl:template>
</xsl:stylesheet>
|