automatically login after registeration

This commit is contained in:
printempw 2016-02-04 12:35:37 +08:00
parent d24ab3a0fe
commit f0a07c347e

View File

@ -2,7 +2,7 @@
* @Author: prpr * @Author: prpr
* @Date: 2016-01-21 13:55:44 * @Date: 2016-01-21 13:55:44
* @Last Modified by: prpr * @Last Modified by: prpr
* @Last Modified time: 2016-02-03 21:40:41 * @Last Modified time: 2016-02-04 12:34:37
*/ */
'use strict'; 'use strict';
@ -52,17 +52,20 @@ var register = function() {
showMsg("alert-info", "Registering..."); showMsg("alert-info", "Registering...");
}, },
success: function(json) { success: function(json) {
if (json.errno == 0) { if (json.errno == 0) {
showAlert(json.msg + " Please log in.", function(){ showAlert(json.msg, function(){
showMsg('hide', ""); showMsg('hide', "");
$('[data-remodal-id=register-modal]').remodal().close(); $('[data-remodal-id=register-modal]').remodal().close();
$('[data-remodal-id=login-modal]').remodal().open(); // Automatically login after registeration
$("#uname").val(uname);
$("#passwd").val(passwd);
login();
}); });
} else { } else {
showAlert(json.msg); showAlert(json.msg);
showMsg('hide', ""); showMsg('hide', "");
} }
} }
}); });
} }
} }
@ -125,3 +128,4 @@ $("body").on("keypress", "[data-remodal-id=register-modal]", function(event){
$("body").on("keypress", "[data-remodal-id=login-modal]", function(event){ $("body").on("keypress", "[data-remodal-id=login-modal]", function(event){
if (event.which == 13) login(); if (event.which == 13) login();
}).on("click", "#login-button", login); }).on("click", "#login-button", login);