Skip to content

Update dashboard #126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

# pnpm
pnpm-lock.yaml
13 changes: 7 additions & 6 deletions app/dashboard/components/profileHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,7 @@ export default function ProfileHeader(props: {
<input type="checkbox" className="rounded text-pink-500 mr-3" required />
<p>I authorize you to share my application/registration information for event administration, ranking, MLH administration, pre- and post-event informational e-mails, and occasional messages about hackathons in-line with the{" "}
<a className="text-blue-300 hover:text-blue-500" href="https://mlh.io/privacy" rel="noopener noreferrer" target="_blank">MLH Privacy Policy</a>
</p>
</div>
<div className="flex flex-row items-center justify-left">
<input type="checkbox" className="rounded text-pink-500 mr-3" required />
<p> Further, I agree to the terms of both the{" "}
. Further, I agree to the terms of both the{" "}
<a
className="text-blue-300 hover:text-blue-500"
href="https://github.com/MLH/mlh-policies/blob/master/prize-terms-and-conditions/contest-terms.md"
Expand All @@ -107,7 +103,12 @@ export default function ProfileHeader(props: {
href="https://mlh.io/privacy"
rel="noopener noreferrer"
target="_blank"
>MLH Privacy Policy</a></p>
>MLH Privacy Policy</a>
</p>
</div>
<div className="flex flex-row items-center justify-left">
<input type="checkbox" className="rounded text-pink-500 mr-3" onChange={(e) => userData.opt_in = e.target.checked} />
<p>I authorize MLH to send me occasional emails about relevant events, career opportunities, and community announcements.</p>
</div>
<div className="flex flex-row items-center justify-center">
<CardTitle>Unregistered</CardTitle>
Expand Down
179 changes: 168 additions & 11 deletions app/dashboard/page.tsx

Large diffs are not rendered by default.

Loading
Loading