Skip to content

Commit

Permalink
Add link to signup site
Browse files Browse the repository at this point in the history
  • Loading branch information
lamasters committed Sep 21, 2023
1 parent 8894290 commit 6395f62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
#signup {
margin: 10px;
text-decoration: underline;
color: white;
}

#signup:hover {
Expand Down
4 changes: 2 additions & 2 deletions src/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ export function createSession(session, hooks) {
<>
<div>
<label className="login-item">Email:</label>
<input onChange={(e) => hooks.email.set(e.target.value)} type="text" />
<input onChange={(e) => hooks.email.set(e.target.value)} type="email" />
<label className="login-item">Password:</label>
<input onChange={(e) => hooks.password.set(e.target.value)} type="password" />
</div>
<div id="login-button" onClick={submitLogin}>Login</div>
<a id="signup">Need an account?</a>
<a href="https://entangled-tabs.vercel.app" target="_blank" rel="noreferrer" id="signup">Need an account?</a>
</>
);
}
Expand Down

0 comments on commit 6395f62

Please sign in to comment.