Skip to content
Snippets Groups Projects
function.js 378 B
Newer Older
Ishan Patel's avatar
Ishan Patel committed
function displayloading() {
	$('#myModal').modal('show');
Mitchell Moore's avatar
Mitchell Moore committed
function request_account() {
    socket.emit('request account', {
        fullname: document.getElementById("fullname").value,
        reason: document.getElementById("reason").value,
        username: document.getElementById("username").innerText
}

function refresh() {
    document.location.reload(true);