<?php include ('db_connect.php'); session_start(); ?> <!DOCTYPE html> <html> <style> { box-sizing: border-box; } *:focus { outline: none; } body { font-family: Arial; background-color: #E6E6FA; padding: 50px; } .login { margin: 20px auto; width: 300px; } .login-screen { background-color: #FFF; padding: 20px; border-radius: 5px } .app-title { font-size: 15px; text-align: center; color: #000000; } .login-form { text-align: center; } .control-group { margin-bottom: 10px; } input { text-align: center; background-color: #ECF0F1; border: 2px solid transparent; border-radius: 3px; font-size: 16px; font-weight: 200; padding: 10px 0; width: 250px; transition: border .5s; } input:focus { border: 2px solid #3498DB; box-shadow: none; } .btn { border: 2px solid transparent; background: #20B2AA; color: #ffffff; font-size: 16px; line-height: 25px; padding: 10px 0; text-decoration: none; text-shadow: none; border-radius: 3px; box-shadow: none; transition: 0.25s; display: block; width: 250px; margin: 0 auto; } .btn:hover { background-color: #2980B9; } .login-link { font-size: 12px; color: #444; display: block; margin-top: 12px; } </style> <body> <div class="login"> <div class="login-screen"> <div class="app-title"> <h1>กรุณาเข้าสู่ระบบ</h1> </div> <form action="page.cgi" method="post" name="form1"> <script language="JavaScript"> function fncSubmit(strPage) { if(strPage == "page1") if(isNaN(document.form1.txtidcard.value)) // เช็ค textbox ต้องเป้นตัวเลข { alert('กรุณาใส่รหัสผ่านเท่านั้น.'); return false; } var x = document.forms["form1"]["txtidcard"].value; // เช็คค่าว่าง textbox if (x == "") { alert("คุณไม่ได้ใส่รหัสผ่าน"); return false; } { document.form1.action="chklogin.php"; } if(strPage == "page2") if(isNaN(document.form1.txtidcard.value)) // เช็ค textbox ต้องเป้นตัวเลข { alert('กรุณาใส่รหัสพนักงานเท่านั้น.'); return false; } var a = document.forms["form1"]["txtidcard"].value; // เช็คค่าว่าง textbox if (a == "") { alert("กรุณาใส่รหัสผ่านด้วยครับ"); return false; } { document.form1.action="chklogin2.php"; } document.form1.submit(); } </script> <div class="login-form"> <div class="control-group"> <input type="text" class="login-field" name ="txtidcard" value="" placeholder="รหัสพนักงาน" id="login-name" required> <label class="login-field-icon fui-user" for="login-name"></label> </div> <button type="button" name ="save" class="btn" onClick="JavaScript:fncSubmit('page1')">ยืมอุปกรณ์</button> <button type="button" name ="save" class="btn" onClick="JavaScript:fncSubmit('page2')">คืนอุปกรณ์</button> <a class="login-link" href="test.php">...สรุปข้อมูลการยืมและคืนอุปกรณ์....</a> </div> </div> </div> </body>
function fncSubmit(strPage) { if (strPage == "page1") if (isNaN(document.form1.txtidcard.value)) // เช็ค textbox ต้องเป้นตัวเลข { alert('กรุณาใส่รหัสผ่านเท่านั้น.'); return false; } var x = document.forms["form1"]["txtidcard"].value; // เช็คค่าว่าง textbox if (x == "") { alert("คุณไม่ได้ใส่รหัสผ่าน"); return false; } { document.form1.action = "chklogin.php"; } if (strPage == "page2") if (isNaN(document.form1.txtidcard.value)) // เช็ค textbox ต้องเป้นตัวเลข { alert('กรุณาใส่รหัสพนักงานเท่านั้น.'); return false; } var a = document.forms["form1"]["txtidcard"].value; // เช็คค่าว่าง textbox if (a == "") { alert("กรุณาใส่รหัสผ่านด้วยครับ"); return false; } { document.form1.action = "chklogin2.php"; } document.form1.submit(); }
{ document.form1.action = "chklogin.php"; }
if (something === true) console.log('its true');
if (something === true) { console.log('its true'); }
function fncSubmit(strPage) { if (strPage == 'page1') { if (isNaN(document.form1.txtidcard.value)) { // เช็ค textbox ต้องเป้นตัวเลข alert('กรุณาใส่รหัสผ่านเท่านั้น.'); return false; } var x = document.forms['form1']['txtidcard'].value; // เช็คค่าว่าง textbox if (x == '') { alert('คุณไม่ได้ใส่รหัสผ่าน'); return false; } document.form1.action = 'chklogin.php'; } if (strPage == 'page2') { if (isNaN(document.form1.txtidcard.value)) { // เช็ค textbox ต้องเป้นตัวเลข alert('กรุณาใส่รหัสพนักงานเท่านั้น.'); return false; } var a = document.forms['form1']['txtidcard'].value; // เช็คค่าว่าง textbox if (a == '') { alert('กรุณาใส่รหัสผ่านด้วยครับ'); return false; } document.form1.action = 'chklogin2.php'; } document.form1.submit(); }
<script language="JavaScript"> function fncSubmit(strPage){ if(isNaN(document.form1.txtidcard.value)){ // เช็คค่า textbox ต้องไม่เป็นตัวอักษร alert('!! กรุณากรอกเป็นตัวเลขเท่านั้น !!.'); return false; } var x = document.forms["form1"]["txtidcard"].value; // เช็คค่า textbox ต้องไม่ค่าว่าง if (x == ""){ alert("!! กรุณากรอกรหัสผ่านให้ถูกต้อง !!"); return false; } document.form1.action="chklogin.php"; if(strPage == "page2") document.form1.action="chklogin2.php"; document.form1.submit(); } </script>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง