Skip to content

Commit

Permalink
Switch to VH X application design (#359)
Browse files Browse the repository at this point in the history
* implement apply screen

* update info to vhx 2023

* switch assets to vhx

* clean up assets

* checkpoint for application page

* Media query madness

* revert to default design (antd is hard to change styling)

* clean up old, unused scripts

* upgrade codeql analze to v2

* add scan strategy to override default

* upgrade codeql version

---------

Co-authored-by: jacoblurie29 <jacoblurie29@gmail.com>
  • Loading branch information
zineanteoh and jacoblurie29 authored Sep 7, 2023
1 parent d1214ea commit 308bafb
Show file tree
Hide file tree
Showing 29 changed files with 550 additions and 676 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,17 @@ jobs:
permissions:
security-events: write

strategy:
fail-fast: false
matrix:
language: ['javascript']

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
16 changes: 8 additions & 8 deletions components/signIn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,24 @@ export default function SignIn() {
style={{
alignItems: 'center',
}}>
<Image className={styles.Logo} src="/vhlogo-brown.svg" alt="VandyHacks Logo" preview={false} />
<Image className={styles.Logo} src="/vh-logo.png" alt="VandyHacks Logo" preview={false} />
<br />
<div className={styles.Title} style={{ color: '#714a00' }}>
VandyHacks IX
<div className={styles.Title} style={{ color: 'white' }}>
VandyHacks X
</div>
<Button
size="large"
type="primary"
icon={<GoogleOutlined />}
style={{ borderRadius: '4px' }}
className={styles.ButtonStyle}
onClick={() => signIn('google')}>
Sign in with Google
</Button>
<Button
size="large"
type="primary"
icon={<GithubOutlined />}
style={{ borderRadius: '4px' }}
className={styles.ButtonStyle}
onClick={() => signIn('github')}>
Sign in with GitHub
</Button>
Expand All @@ -50,14 +50,14 @@ export default function SignIn() {
// onFinishFailed={onFinishFailed}
autoComplete="off">
<Item
label={<label>Email</label>}
label={<label style={{ color: 'white' }}>Email</label>}
name="email"
rules={[{ required: true, message: 'Please input your email!' }]}>
<Input />
</Item>

<Item
label={<label>Password</label>}
label={<label style={{ color: 'white' }}>Password</label>}
name="password"
rules={[{ required: true, message: 'Please input your password!' }]}>
<Input.Password />
Expand All @@ -67,7 +67,7 @@ export default function SignIn() {
size="large"
type="primary"
icon={<MailOutlined />}
style={{ borderRadius: '4px' }}
className={styles.ButtonStyle}
htmlType="submit">
Sign in with Email
</Button>
Expand Down
Loading

1 comment on commit 308bafb

@vercel
Copy link

@vercel vercel bot commented on 308bafb Sep 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.