PHP開発登録フロントエンドページ
登録ページはそれほど複雑ではなく、主に機能を?qū)g裝するためのものなので、以前のログインページを引き継いで変更しました。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="format-detection" content="telephone=no" /> <title>注冊頁面</title> <link rel="stylesheet" type="text/css" href="/phpMyAdmin/login.css"/> //引用CSS樣式 </head> <body> <div> <img src="http://keep60.com/Project/SxgAdmin/Public/images/platform_login_header_bg.png"/> </div> <div class="mt70 w432 mar_auto re min_h400"> <form name="form1" id="form1" method="post" action="regedit.php"> <p><input type="text" class="pf_ipt_user" placeholder="請輸入賬號" autocomplete="off" name="username" id="_username" tabindex="1"/></p> <p><input type="password" class="pf_ipt_pass pass_bg_1" placeholder="請輸入密碼" autocomplete="off" name="password" id="_password" tabindex="2"/></p> <p><input type="password" class="pf_ipt_pass pass_bg_1" placeholder="請再輸入一次" autocomplete="off" name="pwd_again" id="_password1" tabindex="3"/></p> <p> <button class="btn_1 w430">注冊</button> </p> </form> </div> </body> </html>
ページは非常にシンプルで複雑なことは何もないので、詳しくは紹介しません。