Skip to content

Commit

Permalink
Merge pull request #229 from in27sung/css
Browse files Browse the repository at this point in the history
css 수정
  • Loading branch information
yeeezin authored Dec 20, 2024
2 parents 12ba1f3 + d5ad226 commit aaddefb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
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>

0 comments on commit aaddefb

Please sign in to comment.