Skip to content
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

css 수정 #229

Merged
merged 1 commit into from
Dec 20, 2024
Merged
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
13 changes: 10 additions & 3 deletions stockMate/src/main/webapp/WEB-INF/views/business/register.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
}
.login-box {
width: 410px;
height : 220px;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
Expand Down Expand Up @@ -103,6 +102,12 @@
margin-bottom:-70px;
}

h2{
color:#25498a;
margin-bottom: 30px; /* 제목과 폼 간 거리 */
font-size: 22px;
}

</style>
</head>
<body>
Expand All @@ -129,10 +134,12 @@
</a>
</div>

<h2>비즈니스 등록</h2>


<!-- 비즈니스 등록 폼 -->
<div class="login-box">

<h2>비즈니스 등록</h2>
<form method="post" action="/business/register">

<!-- 사업자 등록 번호 -->
Expand Down Expand Up @@ -165,4 +172,4 @@
</div>

</body>
</html>
</html>
14 changes: 11 additions & 3 deletions stockMate/src/main/webapp/WEB-INF/views/business/verify.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
}
.login-box {
width: 410px;
height : 220px;

background: #fff;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
Expand Down Expand Up @@ -102,6 +102,12 @@
margin-bottom:-70px;
}

h2{
color:#25498a;
margin-bottom: 30px; /* 제목과 폼 간 거리 */
font-size: 22px;
}

</style>

</head>
Expand All @@ -128,9 +134,11 @@
</a>
</div>

<h2>비즈니스 인증</h2>


<div class="login-box">

<h2>비즈니스 인증</h2>
<form action="/business/verify" method="post">

<input type="text" id="businessNumber" name="businessNumber" required placeholder="사업자 등록 번호">
Expand All @@ -144,4 +152,4 @@

</div>
</body>
</html>
</html>
Loading