Skip to content

Commit b1f185f

Browse files
committed
fix logo (was displayed in vscode preview, but not in browser)
1 parent c278db3 commit b1f185f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</head>
99
<body>
1010
<form>
11-
<img src="/src/logo.svg" />
11+
<img src="logo.svg" />
1212
<span id="success-message" hidden="true">Success!</span>
1313
<span id="error-message" hidden="true">Invalid Credentials</span>
1414
<label for="email">Email</label>

src/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ addEventListener("submit", (event) => {
2424

2525
console.log(`email submitted: ${email}`);
2626
console.log(`password submitted: ${password}`);
27-
27+
2828
for (const element of usersTable) {
2929
if (email === element.username && password === element.password) {
3030
renderSuccess();

0 commit comments

Comments
 (0)