Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
travel
Commits
0ae69cab
Commit
0ae69cab
authored
Jun 29, 2022
by
Lee Soobeom
Browse files
Merge remote-tracking branch 'origin/KimMinGyu' into develop
parents
a10d6e71
13bd5ce0
Changes
1
Hide whitespace changes
Inline
Side-by-side
frontend/src/pages/login.tsx
View file @
0ae69cab
import
{
Link
,
Outlet
}
from
"
react-router-dom
"
;
import
React
from
"
react
"
;
export
default
function
Login
()
{
export
default
function
Login
()
{
return
(
<
div
className
=
"text-center"
>
Login
</
div
>
// Login Page
<
div
>
<
div
className
=
"flex flex-col grid grid-rows-2 place-items-center"
>
<
div
className
=
"w-40 h-40 bg-red-400 place-self-center "
>
<
Link
to
=
"/"
>
Travel Report
</
Link
>
</
div
>
<
div
className
=
"flex-row w-full h-80 md:w-1/2 bg-amber-300 grid place-items-center"
>
<
div
className
=
"flex flex-col w-full md:flex-row "
>
<
div
className
=
"flex flex-col w-full"
>
<
input
className
=
"
placeholder
:
italic
placeholder
:
text
-
slate
-
300
block
bg
-
white
border
border
-
slate
-
500
rounded
-
md
py
-
2
pl
-
9
pr
-
3
shadow
-
sm
focus
:
outline
-
none
focus
:
border
-
sky
-
500
focus
:
ring
-
sky
-
500
focus
:
ring
-
2
" placeholder="
Id
" type="
text
" name="
Id
"
/>
<
input
className
=
"
placeholder
:
italic
placeholder
:
text
-
slate
-
300
block
bg
-
white
border
border
-
slate
-
500
rounded
-
md
py
-
2
pl
-
9
pr
-
3
shadow
-
sm
focus
:
outline
-
none
focus
:
border
-
sky
-
500
focus
:
ring
-
sky
-
500
focus
:
ring
-
1
" placeholder="
Password
" type="
text
" name="
Password
"
/>
</
div
>
<
button
className
=
"w-full bg-sky-600 hover:bg-sky-700 ..."
>
Log-in
</
button
>
</
div
>
</
div
>
</
div
>
<
div
className
=
"flex-row relative w-full h-20 grid place-items-center"
>
<
button
className
=
"bg-white left-1 top-0"
>
<
Link
to
=
"/signup"
>
회원가입
</
Link
>
</
button
>
<
button
className
=
"bg-white left-2 top-0"
>
<
Link
to
=
"/forgot"
>
비밀번호 찾기
</
Link
>
</
button
>
</
div
>
</
div
>
// Login Page
);
};
\ No newline at end of file
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment