user_registration.php

来自「The Shift Log is a database entry and di」· PHP 代码 · 共 46 行

PHP
46
字号
	<ul>
	<p><strong>NOTICE TO USERS</strong></p>
	 This is a <?PHP echo BRANCH; ?> computer system and is the property of the <?PHP echo COMPANY; ?>. It is for authorized use only. <b>Users (authorized or unauthorized) have no explicit or implicit expectation of privacy.</b> 
	<p>Any or all uses of this system and all files on this system may be intercepted, monitored, recorded, copied, audited, inspected, and disclosed to authorized site, <?PHP echo BRANCH; ?>, and law enforcement personnel, as well as authorized officials of other agencies, both domestic and foreign. <b>By using this system, the user consents to such interception, monitoring, recording, copying, auditing, inspection, and disclosure at the discretion of authorized site or <?PHP echo BRANCH; ?>.</b>
	<p>Unauthorized or improper use of this system may result in administrative disciplinary action and civil and criminal penalties. By using this system you indicate your awareness of and consent to these terms and conditions of use. <b>STOP IMMEDIATELY if you do not agree to the conditions stated in this warning
    </ul>
	<html>
	<br />
	<hr>
	<br />
	<body>
	<?PHP 
	if($reg_status == 2)
		{
		echo "<h2>Regretfully, the shift log registration has been temporarily disabled by the administrator. Please try again later.</h2><br />";
		}
		else
		{
		?>
	<form action="<?php echo $HTTP_SERVER_VARS['PHP_SELF']; ?>" method="post">
	  <table bgcolor=#cccccc>
        <tr>
          <td colspan=2><strong>Registration Form:</strong></td>
        </tr>
        <tr>
          <td><div align="right"><strong>User Name:</strong></div></td>
          <td><input type="text" name="user" size="20" />
          </td>
        </tr>
        <tr>
          <td><div align="right"><strong>Password:</strong></div></td>
          <td><input type="password" name="pass" size="20" />
          </td>
        </tr>
        <tr>
		<td><div align="right"><strong>Email:</strong></div></td>
		<td><input type="text" name="email" size="20" maxlength="50"/>
          </td>        
        </tr>
		<tr>
          <td colspan=2 align=center><input type="submit" name="subjoin" value="Register" /></td>
        </tr>
      </table>
	</form>
<?PHP
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?