-
- Add Bootstrap javascript support - Move footer section into body - Add Bootstrap modal in template - Call modal show in displayloading function - Remove notification window - Hide Bootstrap modal after account's ready - Alter wait message
633397ce
function.js 369 B
function displayloading() {
$('#myModal').modal('show');
}
function request_account() {
socket.emit('request account', {
fullname: document.getElementById("fullname").value,
reason: document.getElementById("reason").value,
username: document.getElementById("bid").value
})
}
function refresh() {
document.location.reload(true);
}