Files
17th_Site_Front_End/Login Page/scripts.js
2023-03-28 15:46:20 -04:00

6 lines
179 B
JavaScript

function login() {
const username = document.getElementById("username").value;
const password = document.getElementById("password").value;
//do the auth stuff
}