[Spring] 로그인폼 html css
2024. 7. 22. 09:20ㆍWebBack/Spring
아래는 로그인 폼으로 아이디 기억하기를 구현하기 위한 준비 작업이다. 이 파일을 jsp로 view에 저장하면 된다.
<%@ page contentType="text/html;charset=utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page import="java.net.URLDecoder" %>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css" />
<style>
* { box-sizing:border-box; }
a { text-decoration: none; }
form {
width:400px;
height:500px;
display : flex;
flex-direction: column;
align-items:center;
position : absolute;
top:50%;
left:50%;
transform: translate(-50%, -50%) ;
border: 1px solid rgb(89,117,196);
border-radius: 10px;
}
input[type='text'], input[type='password'] {
width: 300px;
height: 40px;
border : 1px solid rgb(89,117,196);
border-radius:5px;
padding: 0 10px;
margin-bottom: 10px;
}
button {
background-color: rgb(89,117,196);
color : white;
width:300px;
height:50px;
font-size: 17px;
border : none;
border-radius: 5px;
margin : 20px 0 30px 0;
}
#title {
font-size : 50px;
margin: 40px 0 30px 0;
}
#msg {
height: 30px;
text-align:center;
font-size:16px;
color:red;
margin-bottom: 20px;
}
</style>
</head>
<body>
<form action="<c:url value='/login/login'/>" method="post" onsubmit="return formCheck(this);">
<h3 id="title">Login</h3>
<div id="msg">
<c:if test="${not empty param.msg}">
<i class="fa fa-exclamation-circle"> ${URLDecoder.decode(param.msg)}</i>
</c:if>
</div>
<input type="text" name="id" placeholder="이메일 입력" autofocus>
<input type="password" name="pwd" placeholder="비밀번호">
<button>로그인</button>
<div>
<label><input type="checkbox" name="rememberId"> 아이디 기억</label> |
<a href="">비밀번호 찾기</a> |
<a href="">회원가입</a>
</div>
<script>
function formCheck(frm) {
let msg ='';
if(frm.id.value.length==0) {
setMessage('id를 입력해주세요.', frm.id);
return false;
}
if(frm.pwd.value.length==0) {
setMessage('password를 입력해주세요.', frm.pwd);
return false;
}
return true;
}
function setMessage(msg, element){
document.getElementById("msg").innerHTML = ` ${'${msg}'}`;
if(element) {
element.select();
}
}
</script>
</form>
</body>
</html>
아래는 css 내용이다.
* {
box-sizing: border-box;
margin : 0;
padding: 0;
}
a { text-decoration: none; }
ul {
list-style-type: none;
height: 48px;
width: 100%;
background-color: #30426E;
display: flex;
}
ul > li {
color: lightgray;
height : 100%;
width:90px;
display:flex;
align-items: center;
}
ul > li > a {
color: lightgray;
margin:auto;
padding: 10px;
font-size:20px;
align-items: center;
}
ul > li > a:hover {
color :white;
border-bottom: 3px solid rgb(209, 209, 209);
}
#logo {
color:white;
font-size: 18px;
padding-left:40px;
margin-right:auto;
display: flex;
}
'WebBack > Spring' 카테고리의 다른 글
[웹 기술] 2. 서블릿 이해하기 (0) | 2024.07.30 |
---|---|
[웹 기술] 1. 웹 프로그래밍과 JSP (0) | 2024.07.24 |
[Spring] 유효성 검사, redirect, URLEncoder (0) | 2024.07.21 |
[Spring] view controller (0) | 2024.07.21 |
[Spring] PostMapping,GetMapping (0) | 2024.07.21 |