6 lines
179 B
JavaScript
6 lines
179 B
JavaScript
function login() {
|
|
const username = document.getElementById("username").value;
|
|
const password = document.getElementById("password").value;
|
|
|
|
//do the auth stuff
|
|
} |