Commit 96be74a2 by Teeradone-PIM

Merge branch 'teeradone' into integration

# Conflicts:
#	www/src/Template/Users/signup.ctp
parents 32088e4a 854e41de
......@@ -231,6 +231,7 @@ class UsersController extends AppController
}
}
public function notification($data = null)
{
if(!empty($data)){
......
......@@ -468,7 +468,17 @@
<!--------------------------------- confirm password ------------------------------ -->
<script>
function check_number() {
e_k=event.keyCode
//if (((e_k < 48) || (e_k > 57)) && e_k != 46 ) {
if (e_k = 13 && (e_k < 48) || (e_k > 57)) {
event.returnValue = false;
alert("ขออภัยหมายเลขบัตรประจำตัวประชาชน ต้องเป็นตัวเลขเท่านั้น");
}
}
function check_phone() {
e_k=event.keyCode
//if (((e_k < 48) || (e_k > 57)) && e_k != 46 ) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment