18 lines
590 B
HTML
18 lines
590 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="ko"
|
||
|
|
xmlns:th="http://www.thymeleaf.org"
|
||
|
|
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5"
|
||
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||
|
|
layout:decorate="~{layout/layout}">
|
||
|
|
<div layout:fragment="content">
|
||
|
|
<main>
|
||
|
|
<h4>사용자 관리</h4>
|
||
|
|
<div class="row-cols-auto card p-2">
|
||
|
|
<div class="row justify-content-between mx-0">
|
||
|
|
<div class="col-7 card">사용자 목록</div>
|
||
|
|
<div class="col-5 card">정보</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
</html>
|