diff --git a/src/app/login/page.jsx b/src/app/login/page.jsx
index 0fcc0cb..63d6c73 100644
--- a/src/app/login/page.jsx
+++ b/src/app/login/page.jsx
@@ -64,7 +64,8 @@ export default function LoginPage(){
-
+
+ setPasswordReset(1)}>前の画面へ
パスワードの初期化
diff --git a/src/app/login/signupcomplete/page.jsx b/src/app/login/signupcomplete/page.jsx
new file mode 100644
index 0000000..7ce842e
--- /dev/null
+++ b/src/app/login/signupcomplete/page.jsx
@@ -0,0 +1,25 @@
+import '@/styles/style.scss'
+import '@/styles/contents.scss'
+
+export default function SignUpCompletePage(){
+ return(
+
+
+
+
+
Q.CAST3ログインIDの申請が完了しました。
+
申請したIDが承認されると、担当者情報に入力したEメールアドレスに ログイン関連の案内メールが送信されます。
+
+
+ 担当者のEメールアドレス: interplugmast.interplug.co.kr
+
+
+
+ ログイン画面に移動
+
+
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/src/components/publishpage/PublishPage.jsx b/src/components/publishpage/PublishPage.jsx
index 14465da..c21f5c6 100644
--- a/src/components/publishpage/PublishPage.jsx
+++ b/src/components/publishpage/PublishPage.jsx
@@ -94,7 +94,7 @@ export default function PublishPage() {
2024-09-11
- LoginPage
+ LoginPage
LoginPage
@@ -106,6 +106,12 @@ export default function PublishPage() {
2024-10-10
+
+
+ SignUpCompletePage
+
+ 2024-10-10
+
물품 및 도면 관리
diff --git a/src/styles/_main.scss b/src/styles/_main.scss
index 844ab9d..85770e8 100644
--- a/src/styles/_main.scss
+++ b/src/styles/_main.scss
@@ -470,23 +470,34 @@
}
}
}
- .login-btn-box{
- margin-bottom: 20px;
- .login-btn{
- display: block;
- width: 100%;
- height: 45px;
- background-color: #5C6773;
- color: #fff;
- font-size: 15px;
- font-weight: 600;
- border-radius: 4px;
- transition: background .15s ease-in-out;
+ .login-btn{
+ display: block;
+ width: 100%;
+ height: 45px;
+ background-color: #5C6773;
+ color: #fff;
+ font-size: 15px;
+ font-weight: 600;
+ border-radius: 4px;
+ transition: background .15s ease-in-out;
+ &:hover{
+ background-color: #717e8d;
+ }
+ &.light{
+ background-color: #fff;
+ border: 1px solid #5C6773;
+ color: #5C6773;
&:hover{
- background-color: #717e8d;
+ background-color: #f0f0f0;
}
}
}
+ .login-btn-box{
+ margin-bottom: 20px;
+ }
+ .pwreset-btn-box{
+ display: flex;
+ }
.reset-password{
width: 100%;
text-align: center;
@@ -598,5 +609,45 @@
display: flex;
justify-content: flex-end;
}
+ &.complete{
+ max-width: 1000px;
+ }
+ }
+
+}
+
+// 회원가입 완료
+.complete-box-wrap{
+ padding: 72px 80px;
+ .complete-tit{
+ font-size: 18px;
+ font-weight: 600;
+ color: #101010;
+ margin-bottom: 17px;
+ }
+ .complete-txt{
+ font-size: 13px;
+ font-weight: 400;
+ color: #101010;
+ margin-bottom: 27px;
+ }
+ .complete-email-wrap{
+ padding: 36px 30px;
+ border-radius: 2px;
+ background: #F4F4F7;
+ margin-bottom: 20px;
+ .email-info{
+ font-size: 13px;
+ font-weight: 400;
+ color: #000;
+ span{
+ color: #204AF4;
+ font-weight: 500;
+ }
+ }
+ }
+ .complete-btn{
+ display: flex;
+ justify-content: flex-end;
}
}
\ No newline at end of file