SoFunction
Updated on 2025-04-04

Improvements to PHP+jQuery registration module (III): Updated to Smarty3.1


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Register Page</title>
<link href="<{$Template_Dir}>/css/"  rel="stylesheet" type="text/css">
<link href="<{$Template_Dir}>/css/"  rel="stylesheet" type="text/css">

<script src="<{$Template_Dir}>/js/jquery-1.8."></script>
<script src="<{$Template_Dir}>/js/"></script>
<!--Email Pull-->
<script src="<{$Template_Dir}>/js/"></script>
</head>

<body>
<{*Import*}>
<{include file=""}>

<!-- Content area -->
<div >

<!--Registration Area-->
    <div >

<!-- Registration form -->
        <form action="register_chk.php" method="post">
           
<!-- Username -->
<!-- placeholder HTML5 attribute, providing prompt information. Displays when the input field is empty and disappears when the field gets focus -->
            <div class="ipt fipt">
<input type="text" name="uname" value="" placeholder="enter username" autocomplete="off" />
<!--Tip text->
                <span ></span>
            </div>

            <!-- email -->           
            <div class="ipt">
<input type="text" name="uemail" value="" placeholder="common email address" autocomplete="off" /><span><ul class="autoul"></ul>
            </div>

<!-- Password -->
            <div class="ipt">
<input type="password" name="upwd" value="" placeholder="Set password" /><div class="upwdpic"><span></span><img /></div>
            </div>
           
<!-- Repeat password -->
            <div class="ipt">
<input type="password" name="rupwd" value="" placeholder="Confirm Password" /><span >
            </div>

<!--Verification Code-->
            <div class="ipt iptend">
<input type='text' id='yzm' name='yzm' placeholder="verification code" autocomplete="off" />
<img id='yzmpic' src='?num=<{showval}>' style="cursor:pointer" alt="verification code" title="verification code">
                <a style="cursor:pointer" id='changea'>
<img src="<{$Template_Dir}>/images/" alt="Refresh Verification Code">
                </a>
                <span id='yzmchk'></span>
            </div>

<!-- Submit -->
<button type="button" >Register now</button>

<!-- Terms of Service -->
            <span class="fuwu">
                <input type="checkbox" name="agree" checked="checked">
<label for="agree">I agree  <a href="#">" Terms of Service "</a> and <a href="#">" Online Game User Privacy Protection and Personal Information Utilization Policy "</a>
                </label>
            </span>

        </form>

    </div>

</div>
</body>
</html>