summaryrefslogtreecommitdiffstats
path: root/frontend/src/Login.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/Login.js')
-rw-r--r--frontend/src/Login.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/Login.js b/frontend/src/Login.js
index 70fff91..a251216 100644
--- a/frontend/src/Login.js
+++ b/frontend/src/Login.js
@@ -28,7 +28,7 @@ const Login = () => {
return (
<form onSubmit={handleSubmit(onSubmit)}>
- <h1 class="title">Log in</h1>
+ <h1 className="title">Log in</h1>
<label className="label">
Username <input className="input" name="username" type="text" ref={register} required />
</label>
@@ -42,7 +42,6 @@ const Login = () => {
<div>
No account? Register <Link to="/register">here</Link>.
</div>
- {/* <div className="error">{errors}</div> */}
</form>
);
};