From 8d931bbfa30c02dab924541dd1b5803187206d62 Mon Sep 17 00:00:00 2001 From: SeungJin051 Date: Sun, 4 Aug 2024 19:43:01 +0900 Subject: [PATCH] #3.5 ~ #4.0 commit --- seungjin/nomad/app.js | 9 +++++++++ seungjin/nomad/index.html | 16 ++++++++++++++++ seungjin/nomad/stlye.css | 0 3 files changed, 25 insertions(+) create mode 100644 seungjin/nomad/app.js create mode 100644 seungjin/nomad/index.html create mode 100644 seungjin/nomad/stlye.css diff --git a/seungjin/nomad/app.js b/seungjin/nomad/app.js new file mode 100644 index 0000000..55b6ca4 --- /dev/null +++ b/seungjin/nomad/app.js @@ -0,0 +1,9 @@ +const loginInput = document.querySelector("#login-form input"); +const loginButton = document.querySelector("#login-form button"); + +function onBtnClick() { + console.log(loginInput.value); + console.log("Click"); +} + +loginButton.addEventListener("click", onBtnClick); diff --git a/seungjin/nomad/index.html b/seungjin/nomad/index.html new file mode 100644 index 0000000..6b5d1ba --- /dev/null +++ b/seungjin/nomad/index.html @@ -0,0 +1,16 @@ + + + + + + + Momnentum App + + +
+ + +
+ + + diff --git a/seungjin/nomad/stlye.css b/seungjin/nomad/stlye.css new file mode 100644 index 0000000..e69de29