📄 useradd.php
字号:
<?php
require_once 'lib/Session.php';
if (isset($_SESSION['image_random_value'])) {
// remove the random value from session
$_SESSION['image_random_value'] = '';
}
include('head.php');
?>
<div id="maincontent">
<div class="item">
<h2 class="title">.: User Registration :.</h2>
<form method="post" action="add_users.php" name="insertForm" id="insertForm">
<p class="first">Name:
<input type="text" name="name" size="30" maxlength="30" /></p>
<p class="first">Surname:
<input type="text" name="surname" size="30" maxlength="30" /></p>
<p class="first">User Name:
<input type="text" name="user_name" size="30" maxlength="30" /></p>
<p class="first">Email:
<input type="text" name="email" size="30" maxlength="30" /></p>
<p class="first">Password:
<input type="password" name="pass" size="30" maxlength="30" /></p>
<p class="first">Confirm Password:
<input type="password" name="pass1" size="30" maxlength="30" /></p>
<p class="first">Number Verification:
Type the number you see in the picture below.</p>
<p class="first"><img src="usr-auth/randomImage.php"></p>
<p class="first">
<input name="txtNumber" type="text" id="txtNumber" value size="5"></p>
<p class="first">View the
<a target="_blank" href="tos.html">Terms of Service</a> &
<a target="_blank" href="privacy.html">Privacy Policy</a>.
<br>
You must accept them to register a account</p>
<input type="submit" value="I accept. Register my account" />
</form>
</div>
</div>
<?
include('foot.php');
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -