mirror of https://github.com/BOINC/boinc.git
52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
|
<?php
|
||
|
|
||
|
require_once("../inc/util.inc");
|
||
|
|
||
|
db_init();
|
||
|
$user = get_logged_in_user(false);
|
||
|
page_head("Tell others about ".PROJECT);
|
||
|
|
||
|
|
||
|
echo "
|
||
|
<table width=600><tr><td>
|
||
|
Help us by telling your friends and family about ".PROJECT.".
|
||
|
<p>
|
||
|
Fill in this form with the names and email addresses
|
||
|
of people you think might to participate in ".PROJECT.".
|
||
|
We'll send them an email in your name,
|
||
|
and you can add your own message if you like.
|
||
|
<form method=get action=ffmail_action.php>
|
||
|
<table cellpadding=4>
|
||
|
<tr><td class=heading>Your name:</td><td class=heading>Your email address:</td></tr>
|
||
|
";
|
||
|
if ($user) {
|
||
|
echo "
|
||
|
<tr><td><b>$user->name</b></td><td><b>$user->email_addr</b></td></tr>
|
||
|
<input type=hidden name=uname value=\"$user->name\">
|
||
|
<input type=hidden name=uemail value=\"$user->email_addr\">
|
||
|
";
|
||
|
} else {
|
||
|
echo "<tr><td><input name=uname></td><td><input name=uemail></td></tr>
|
||
|
";
|
||
|
}
|
||
|
echo "
|
||
|
<tr><td class=heading>Friend's name:</td><td class=heading>Friend's email address:</td></tr>
|
||
|
";
|
||
|
for ($i=0; $i<5; $i++) {
|
||
|
echo "
|
||
|
<tr><td><input size=30 name=n$i></td><td><input size=30 name=e$i></tr>
|
||
|
";
|
||
|
}
|
||
|
echo "
|
||
|
<tr><td class=heading colspan=2>Additional message (optional)</td></tr>
|
||
|
<tr><td colspan=2><textarea name=comment rows=8 cols=50></textarea></td></tr>
|
||
|
<tr><td align=center><input type=submit name=action value=Preview></td>
|
||
|
<td align=center><input type=submit name=action value=Send></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
</td></tr></table>
|
||
|
";
|
||
|
page_tail();
|
||
|
?>
|