summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kröll <pepl@cpan.org>2008-12-01 22:56:04 +0100
committerMichael Kröll <pepl@cpan.org>2008-12-01 22:56:04 +0100
commita2c9170e5bde47790ad3939e4e789c38d2d75239 (patch)
tree69571f4c0ec95f6bf5bb805d9883c5ba06e53a33
parentStub for error page; redirect to error page when openid.return_to parameter i... (diff)
parentMerge branch 'master' of git@git.useperl.at:PAUSE-OpenID (diff)
downloadSimple-OpenID-a2c9170e5bde47790ad3939e4e789c38d2d75239.tar.gz
Simple-OpenID-a2c9170e5bde47790ad3939e4e789c38d2d75239.tar.bz2
Simple-OpenID-a2c9170e5bde47790ad3939e4e789c38d2d75239.zip
Merge branch 'master' of git@git.useperl.at:PAUSE-OpenID
-rw-r--r--root/templates/index.xsl10
1 files changed, 6 insertions, 4 deletions
diff --git a/root/templates/index.xsl b/root/templates/index.xsl
index 30aa90f..9dc5bd4 100644
--- a/root/templates/index.xsl
+++ b/root/templates/index.xsl
@@ -10,22 +10,24 @@
<xsl:param name="openid.return_to"/>
<xsl:template match="/document">
- <html xmlns="http://www.w3.org/1999/xhtml">
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Sign in with OpenID</title>
+ <link rel="openid.server" href="https://localhost/openid" />
<style type="text/css">
@import "default.css";
</style>
</head>
-
+
<body>
- <p>The website '<xsl:value-of select="$openid.return_to"/>' wants to verify your PAUSE identity.</p>
+ <h1>PAUSE OpenID login service</h1>
+ <p>The website '<xsl:value-of select="$openid.return_to"/>' wants to verify your <a href="https://pause.perl.org/">PAUSE</a> identity.</p>
<form method="post" action="login" id="login_form">
<div>
<label for="username"><abbr title="Perl Authors Upload Server">PAUSE</abbr> ID:</label>
<input name="username" id="username" type="text" />
<label for="password">Password:</label>
-
+
<input name="password" id="password" type="password" />
<input type="submit" />
</div>