We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c278db3 commit b1f185fCopy full SHA for b1f185f
2 files changed
src/index.html
@@ -8,7 +8,7 @@
8
</head>
9
<body>
10
<form>
11
- <img src="/src/logo.svg" />
+ <img src="logo.svg" />
12
<span id="success-message" hidden="true">Success!</span>
13
<span id="error-message" hidden="true">Invalid Credentials</span>
14
<label for="email">Email</label>
src/script.js
@@ -24,7 +24,7 @@ addEventListener("submit", (event) => {
24
25
console.log(`email submitted: ${email}`);
26
console.log(`password submitted: ${password}`);
27
-
+
28
for (const element of usersTable) {
29
if (email === element.username && password === element.password) {
30
renderSuccess();
0 commit comments