1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
<?php
$fs->get_language_pack($lang, 'register');
// If the application preferences require the use of
// confirmation codes, use this script
if ($flyspray_prefs['spam_proof'] == '1'
&& $flyspray_prefs['anon_reg'] == '1'
&& !$COOKIE['flyspray_userid']) {
// If the user came here from their notification link
if (isset($_GET['magic']))
{
// Check that the magic url is valid
$check_magic = $db->Query("SELECT * FROM {$dbprefix}registrations
WHERE magic_url = ?",
array($_GET['magic'])
);
if (!$db->CountRows($check_magic))
{
echo "<div class=\"redirectmessage\"><p><em>{$register_text['badmagic']}</em></p></div>";
echo '<meta http-equiv="refresh" content="2; URL=index.php">';
} else
{
?>
<h1><?php echo $register_text['registernewuser'];?></h1>
<form action="<?php echo $conf['general']['baseurl'];?>index.php" name="form2" method="post" id="registernewuser">
<table class="admin">
<tr>
<td colspan="2">
<input type="hidden" name="do" value="modify" />
<input type="hidden" name="action" value="registeruser" />
<input type="hidden" name="magic_url" value="<?php echo $_GET['magic'];?>" />
<?php echo $register_text['entercode']; ?>
</td>
</tr>
<tr>
<td><label for="confirmationcode"><?php echo $register_text['confirmationcode']; ?></label></td>
<td><input id="confirmationcode" name="confirmation_code" type="text" size="20" maxlength="20" /><strong>*</strong></td>
</tr>
<tr>
<td><label for="userpass"><?php echo $register_text['password'];?></label></td>
<td><input id="userpass" name="user_pass" type="password" size="20" maxlength="100" /><strong>*</strong></td>
</tr>
<tr>
<td><label for="userpass2"><?php echo $register_text['confirmpass'];?></label></td>
<td><input id="userpass2" name="user_pass2" type="password" size="20" maxlength="100" /><strong>*</strong></td>
</tr>
<tr>
<td colspan="2" class="buttons">
<input class="adminbutton" type="submit" name="buSubmit" value="<?php echo $register_text['registeraccount'];?>" />
</td>
</tr>
</table>
</form>
<?php
// End of checking that the magic url is valid
};
// If there was no magic url specified
} else
{
?>
<form action="<?php echo $conf['general']['baseurl'];?>index.php" method="post" id="registernewuser">
<h1><?php echo $register_text['registernewuser'];?></h1>
<p><em><?php echo $register_text['requiredfields'];?></em> <strong>*</strong></p>
<table class="admin">
<tr>
<td>
<input type="hidden" name="do" value="modify" />
<input type="hidden" name="action" value="sendcode" />
<label for="username"><?php echo $register_text['username'];?></label></td>
<td><input id="username" name="user_name" type="text" size="20" maxlength="20" /><strong>*</strong></td>
</tr>
<tr>
<td><label for="realname"><?php echo $register_text['realname'];?></label></td>
<td><input id="realname" name="real_name" type="text" size="20" maxlength="100" /><strong>*</strong></td>
</tr>
<tr>
<td><label for="emailaddress"><?php echo $register_text['emailaddress'];?></label></td>
<td><input id="emailaddress" name="email_address" type="text" size="20" maxlength="100" /></td>
</tr>
<tr>
<td><label for="jabberid"><?php echo $register_text['jabberid'];?></label></td>
<td><input id="jabberid" name="jabber_id" type="text" size="20" maxlength="100" /></td>
</tr>
<tr>
<td><label><?php echo $register_text['notifications'];?></label></td>
<td>
<input type="radio" name="notify_type" value="1" checked="checked" /><?php echo $register_text['email'];?> <br />
<input type="radio" name="notify_type" value="2" /><?php echo $register_text['jabber'];?>
</td>
</tr>
<tr>
<td colspan="2">
<?php echo $register_text['note'];?>
</td>
</tr>
<tr>
<td colspan="2" class="buttons">
<input class="adminbutton" type="submit" name="buSubmit" value="<?php echo $register_text['sendcode'];?>" />
</td>
</tr>
</table>
</form>
<?php
// End of checking for magic_url
};
?>
<?php
// End of checking settings
};
?>
|