
2005-10-25 Vincent Untz <vuntz@gnome.org> * foundation.gnome.org/vote/include/election-sql.php: updated for SQL change * foundation.gnome.org/vote/include/step1-login.php: fix grammar * foundation.gnome.org/vote/include/step3-confirm.php: accept votes :-)
19 lines
599 B
PHP
19 lines
599 B
PHP
<?php
|
|
|
|
function step1_do () {
|
|
global $email;
|
|
global $tmp_token;
|
|
|
|
$result = "<h2>Step 1/4 - Login</h2>\n";
|
|
|
|
$result .= "<p>Please login using the informations that were sent to you by e-mail.</p>\n";
|
|
|
|
$result .= "<div class=\"votedata\">\n";
|
|
$result .= "<p><label for=\"email\">E-mail: </label><input type=\"text\" name=\"email\" value=\"".htmlspecialchars ($email)."\" /></p>\n";
|
|
$result .= "<p><label for=\"tmp_token\">Vote token: </label><input type=\"text\" name=\"tmp_token\" value=\"".htmlspecialchars ($tmp_token)."\" /></p>\n";
|
|
$result .= "</div>\n";
|
|
|
|
return $result;
|
|
}
|
|
|
|
?>
|