로그인 처리

조수경·2022년 2월 24일
0

Spring

목록 보기
42/43

header.jsp

<!-- 로그인을 하지 않은 경우 true -->
			<sec:authorize access="isAnonymous()">
			<a class="nav-link dropdown-toggle text-nowrap px-3"
				data-toggle="dropdown" href="#" role="button" aria-haspopup="true"
				aria-expanded="false"> <img
					class="user-avatar rounded-circle mr-2"
					src="/resources/shards/images/avatars/0.jpg" alt="User Avatar">
					<span class="d-none d-md-inline-block">Sierra Brooks</span>
			</a>
			</sec:authorize>
			<!-- 로그인 한 사용자의 경우 -->
			<sec:authorize access="isAuthenticated()">
				<sec:authentication property="principal.username" />&nbsp;
				<form method="post" action="/logout">
					<button type="submit" class="mb-2 btn btn-sm btn-info mr-1">로그아웃</button>
					<sec:csrfInput />
				</form>
			</sec:authorize>
profile
신입 개발자 입니다!!!

0개의 댓글