-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Refactor/#23 React-Route 페이지 연결하기
- Loading branch information
Showing
3 changed files
with
127 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
import logo from '../../assets/FITple-logo.svg' | ||
import logo from "../../../assets/FITple-logo.svg"; | ||
import { | ||
LoginPageWrapper, | ||
MainText, | ||
FormWrapper, | ||
InputBox, | ||
SubmitButton, | ||
OptionWrapper, | ||
OptionButton | ||
} from './LoginPage.style'; | ||
LoginPageWrapper, | ||
MainText, | ||
FormWrapper, | ||
InputBox, | ||
SubmitButton, | ||
OptionWrapper, | ||
OptionButton, | ||
} from "./LoginPage.style"; | ||
|
||
function LoginPage() { | ||
return ( | ||
<LoginPageWrapper> | ||
<img src={logo} alt="FITple Logo" /> | ||
<MainText>F I T p l e</MainText> | ||
<FormWrapper> | ||
<InputBox type="text" id="login-id" placeholder="ID" /> | ||
<InputBox type="password" id="login-pw" placeholder="PASSWORD" /> | ||
<SubmitButton>로그인</SubmitButton> | ||
</FormWrapper> | ||
<OptionWrapper> | ||
<OptionButton>회원가입</OptionButton> | ||
<OptionButton>ID/PW 찾기</OptionButton> | ||
</OptionWrapper> | ||
</LoginPageWrapper> | ||
); | ||
return ( | ||
<LoginPageWrapper> | ||
<img src={logo} alt="FITple Logo" /> | ||
<MainText>F I T p l e</MainText> | ||
<FormWrapper> | ||
<InputBox type="text" id="login-id" placeholder="ID" /> | ||
<InputBox type="password" id="login-pw" placeholder="PASSWORD" /> | ||
<SubmitButton>로그인</SubmitButton> | ||
</FormWrapper> | ||
<OptionWrapper> | ||
<OptionButton>회원가입</OptionButton> | ||
<OptionButton>ID/PW 찾기</OptionButton> | ||
</OptionWrapper> | ||
</LoginPageWrapper> | ||
); | ||
} | ||
|
||
export default LoginPage | ||
export default LoginPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters