2016-02-01 12:59:10 +01:00
|
|
|
/*
|
|
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
jQuery(function(){
|
|
|
|
$("#divErrMsg").css({"display": "none"});
|
|
|
|
|
|
|
|
$(document).on("keydown", function(e){
|
|
|
|
|
|
|
|
if(e.keyCode == 13){
|
|
|
|
e.preventDefault();
|
|
|
|
if(!$("#txtCommonSearch").is(":focus")){
|
|
|
|
$("#btnPageSignUp").trigger("click");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#Username,#Email,#Realname,#Password,#ConfirmedPassword").on("blur", validateCallback);
|
|
|
|
validateOptions.Items = ["#Username","#Email","#Realname","#Password","#ConfirmedPassword"];
|
|
|
|
|
|
|
|
$("#btnPageSignUp").on("click", function(){
|
|
|
|
validateOptions.Validate(function() {
|
2016-03-30 12:02:38 +02:00
|
|
|
var username = $.trim($("#Username").val());
|
|
|
|
var email = $.trim($("#Email").val());
|
|
|
|
var password = $.trim($("#Password").val());
|
|
|
|
var confirmedPassword = $.trim($("#ConfirmedPassword").val());
|
|
|
|
var realname = $.trim($("#Realname").val());
|
|
|
|
var comment = $.trim($("#Comment").val());
|
2016-04-01 09:39:04 +02:00
|
|
|
var isAdmin = $("#isAdmin").val();
|
2016-03-30 12:02:38 +02:00
|
|
|
|
2016-02-01 12:59:10 +01:00
|
|
|
$.ajax({
|
|
|
|
url : '/signUp',
|
|
|
|
data:{username: username, password: password, realname: realname, comment: comment, email: email},
|
|
|
|
type: "POST",
|
|
|
|
beforeSend: function(e){
|
|
|
|
$("#btnPageSignUp").prop("disabled", true);
|
|
|
|
},
|
|
|
|
success: function(data, status, xhr){
|
|
|
|
if(xhr && xhr.status == 200){
|
|
|
|
$("#dlgModal")
|
|
|
|
.dialogModal({
|
2016-04-01 09:39:04 +02:00
|
|
|
"title": isAdmin == "true" ? i18n.getMessage("title_add_user") : i18n.getMessage("title_sign_up"),
|
|
|
|
"content": isAdmin == "true" ? i18n.getMessage("added_user_successfully") : i18n.getMessage("registered_successfully"),
|
2016-03-30 12:02:38 +02:00
|
|
|
"callback": function(){
|
2016-04-01 09:39:04 +02:00
|
|
|
if(isAdmin == "true") {
|
2016-03-30 12:02:38 +02:00
|
|
|
document.location = "/registry/project";
|
|
|
|
}else{
|
2016-03-31 14:15:36 +02:00
|
|
|
document.location = "/signIn";
|
2016-03-30 12:02:38 +02:00
|
|
|
}
|
2016-02-01 12:59:10 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error:function(jqxhr, status, error){
|
|
|
|
$("#dlgModal")
|
|
|
|
.dialogModal({
|
|
|
|
"title": i18n.getMessage("title_sign_up"),
|
|
|
|
"content": i18n.getMessage("internal_error"),
|
|
|
|
"callback": function(){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
complete: function(){
|
|
|
|
$("#btnPageSignUp").prop("disabled", false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|