Skip to content

Commit b8fc225

Browse files
committed
chore: added a single icon to getting started page
1 parent f95a6c7 commit b8fc225

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/Getting Started and FAQ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you're interested in getting involved with our club, the best way to start is
1111

1212
Feel free to reach out to our club leaders for more information. We look forward to seeing you!
1313

14-
## Frequently Asked Questions (FAQ)
14+
## 💬 Frequently Asked Questions (FAQ)
1515

1616
#### Q: Who can join the UMass Lowell Cloud Computing Club?
1717
**A**: The club is open to all UMass Lowell students, faculty, and staff, regardless of their experience level with cloud computing.

src/pages/SignIn.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,11 @@ export default function SignIn() {
166166
const handleOpen = () => setOpen(true);
167167
const handleClose = () => setOpen(false);
168168

169+
// IMPORTANT TO-DO: When the handle submit functionality is implemented, make sure to change the variant type of this button to text instead of disabled
170+
// Again, only when sign in works via backend!
169171
return (
170172
<div>
171-
<Button variant='text' onClick={handleOpen} startIcon={ <LoginIcon /> }>Sign In</Button>
173+
<Button variant='disabled' onClick={handleOpen} startIcon={ <LoginIcon /> }>Sign In</Button>
172174
<Modal
173175
aria-labelledby="transition-modal-title"
174176
aria-describedby="transition-modal-description"

0 commit comments

Comments
 (0)