mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-28 23:59:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5137 201d5d3c-b55e-5fd7-737f-ddc643e51545
65 lines
No EOL
1.7 KiB
PHP
65 lines
No EOL
1.7 KiB
PHP
<?php
|
|
|
|
require_once "lib/session.php";
|
|
require_once "lib/render.php";
|
|
|
|
define('login_form_pat',
|
|
'<div class="form">
|
|
<p>
|
|
Enter your identity URL and password into this form to log in to
|
|
this server. This server must be configured to accept your identity URL.
|
|
</p>
|
|
|
|
<form method="post" action="%s">
|
|
<table>
|
|
<tr>
|
|
<th><label for="openid_url">OpenID URL:</label></th>
|
|
<td><input type="text" name="openid_url"
|
|
value="%s" id="openid_url" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th><label for="password">Password:</label></th>
|
|
<td><input type="password" name="password" id="password" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="submit" value="Log in" />
|
|
<input type="submit" name="cancel" value="Cancel" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
');
|
|
|
|
define('login_needed_pat',
|
|
'You must be logged in as %s to approve this request.');
|
|
|
|
function login_render($errors=null, $input=null, $needed=null)
|
|
{
|
|
$current_user = getLoggedInUser();
|
|
if ($input === null) {
|
|
$input = $current_user;
|
|
}
|
|
if ($needed) {
|
|
$errors[] = sprintf(login_needed_pat, link_render($needed));
|
|
}
|
|
|
|
$esc_input = htmlspecialchars($input, ENT_QUOTES);
|
|
$login_url = buildURL('login', true);
|
|
$body = sprintf(login_form_pat, $login_url, $esc_input);
|
|
if ($errors) {
|
|
$body = loginError_render($errors) . $body;
|
|
}
|
|
return page_render($body, $current_user, 'Log In', null, true);
|
|
}
|
|
|
|
function loginError_render($errors)
|
|
{
|
|
$text = '';
|
|
foreach ($errors as $error) {
|
|
$text .= sprintf("<li>%s</li>\n", $error);
|
|
}
|
|
return sprintf("<ul class=\"error\">\n%s</ul>\n", $text);
|
|
}
|
|
?>
|