2015-01-09 18:54:05 +00:00
|
|
|
<?php
|
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2015 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-01-14 17:19:11 +00:00
|
|
|
// forms for account creation and login
|
|
|
|
|
2015-01-09 18:54:05 +00:00
|
|
|
function create_account_form($teamid, $next_url) {
|
2017-02-02 06:13:21 +00:00
|
|
|
global $recaptcha_public_key;
|
2017-06-20 07:38:11 +00:00
|
|
|
form_input_hidden('next_url', $next_url);
|
2015-01-09 18:54:05 +00:00
|
|
|
|
|
|
|
if ($teamid) {
|
2017-06-20 07:38:11 +00:00
|
|
|
form_input_hidden('teamid', $teamid);
|
2015-01-09 18:54:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Using invitation codes to restrict access?
|
|
|
|
//
|
|
|
|
if (defined('INVITE_CODES')) {
|
2017-06-20 07:38:11 +00:00
|
|
|
form_input_text(
|
2017-09-26 05:08:40 +00:00
|
|
|
sprintf('<span title="%s">%s</span>',
|
|
|
|
tra("An invitation code is required to create an account."),
|
|
|
|
tra("Invitation code")
|
|
|
|
),
|
|
|
|
"invite_code"
|
2017-06-20 07:38:11 +00:00
|
|
|
);
|
2015-01-09 18:54:05 +00:00
|
|
|
}
|
|
|
|
|
2017-06-20 07:38:11 +00:00
|
|
|
form_input_text(
|
2017-09-26 05:08:40 +00:00
|
|
|
sprintf('<span title="%s">%s</span>',
|
|
|
|
tra("Identifies you on our web site. Use your real name or a nickname."),
|
|
|
|
tra("Screen name")
|
|
|
|
),
|
2017-06-20 07:38:11 +00:00
|
|
|
"new_name"
|
2015-01-09 18:54:05 +00:00
|
|
|
);
|
2017-06-20 07:38:11 +00:00
|
|
|
form_input_text(
|
2017-09-26 05:08:40 +00:00
|
|
|
sprintf('<span title="%s">%s</span>',
|
|
|
|
tra("Must be a valid address of the form 'name@domain'."),
|
|
|
|
tra("Email address")
|
|
|
|
),
|
2017-06-20 07:38:11 +00:00
|
|
|
"new_email_addr"
|
2015-01-09 18:54:05 +00:00
|
|
|
);
|
|
|
|
$min_passwd_length = parse_element(get_config(), "<min_passwd_length>");
|
|
|
|
if (!$min_passwd_length) {
|
|
|
|
$min_passwd_length = 6;
|
|
|
|
}
|
|
|
|
|
2017-06-20 07:38:11 +00:00
|
|
|
form_input_text(
|
2017-09-26 05:08:40 +00:00
|
|
|
sprintf('<span title="%s">%s</span>',
|
|
|
|
tra("Must be at least %1 characters", $min_passwd_length),
|
|
|
|
tra("Password")
|
|
|
|
),
|
2017-06-20 07:38:11 +00:00
|
|
|
"passwd", "", "password"
|
2015-01-09 18:54:05 +00:00
|
|
|
);
|
2017-06-20 07:38:11 +00:00
|
|
|
form_input_text(tra("Confirm password"), "passwd2", "", "password");
|
|
|
|
form_select(
|
2017-09-26 05:08:40 +00:00
|
|
|
sprintf('<span title="%s">%s</span>',
|
|
|
|
tra("Select the country you want to represent, if any."),
|
|
|
|
tra("Country")
|
|
|
|
),
|
2017-06-20 07:38:11 +00:00
|
|
|
"country",
|
|
|
|
country_select_options()
|
2015-01-09 18:54:05 +00:00
|
|
|
);
|
2017-06-05 21:26:42 +00:00
|
|
|
if (POSTAL_CODE) {
|
2017-06-20 07:38:11 +00:00
|
|
|
form_input_text(
|
2016-11-29 08:34:26 +00:00
|
|
|
tra("Postal or ZIP Code")."<br><small>".tra("Optional")."</small>",
|
2017-06-20 07:38:11 +00:00
|
|
|
"postal_code"
|
2015-01-14 17:19:11 +00:00
|
|
|
);
|
|
|
|
}
|
2015-01-09 18:54:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function login_form($next_url) {
|
|
|
|
echo "
|
|
|
|
<form name=\"f\" method=\"post\" action=\"".secure_url_base()."/login_action.php\">
|
|
|
|
<input type=\"hidden\" name=\"next_url\" value=\"$next_url\">
|
|
|
|
";
|
|
|
|
start_table();
|
|
|
|
if (LDAP_HOST) {
|
|
|
|
$x = "Email address or LDAP user name:";
|
|
|
|
} else {
|
|
|
|
$x = tra("Email address:");
|
|
|
|
}
|
2017-06-24 21:41:07 +00:00
|
|
|
if (!NO_COMPUTING) {
|
2016-12-05 05:04:23 +00:00
|
|
|
$x .= '<br><small><a href="get_passwd.php">'.tra("forgot email address?")."</a></small>";
|
2015-11-04 19:54:38 +00:00
|
|
|
}
|
2016-12-05 05:04:23 +00:00
|
|
|
row2($x, '<input class="form-control" name=email_addr type="text" size=40 tabindex=1>');
|
|
|
|
row2(tra("Password:") . '<br><small><a href="get_passwd.php">' . tra("forgot password?") . "</a></small>",
|
|
|
|
'<input class="form-control" type="password" name="passwd" size="40" tabindex="2">'
|
2015-01-09 18:54:05 +00:00
|
|
|
);
|
|
|
|
row2(tra("Stay logged in"),
|
|
|
|
'<input type="checkbox" name="stay_logged_in" checked>'
|
|
|
|
);
|
|
|
|
|
|
|
|
row2("",
|
2017-08-20 08:17:21 +00:00
|
|
|
"<input class=\"btn btn-success\" type=\"submit\" name=\"mode\" value=\"".tra("Log in")."\" tabindex=\"3\"><br><br>"
|
2015-01-09 18:54:05 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
end_table();
|
|
|
|
echo "</form>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|