화면 사이즈 조정
This commit is contained in:
@@ -7,14 +7,14 @@
|
||||
<script>
|
||||
require.config({paths: {'vs': '/plugins/vs'}});
|
||||
</script>
|
||||
<div class="container mt-2">
|
||||
<div class="container-fluid mt-2">
|
||||
<form name="mockRouteForm" id="mockRouteForm"
|
||||
th:action="${mockRoute.id == null}?@{/mgmt/routes/register.do}:@{/mgmt/routes/update.do}"
|
||||
th:object='${mockRoute}' method="post">
|
||||
<div class="card col-md">
|
||||
<div class="card-header">
|
||||
<h5 th:if="${mockRoute.id == null}">API 정보 등록</h5>
|
||||
<h5 th:if="${mockRoute.id != null}">API 정보 수정</h5>
|
||||
<h3 th:if="${mockRoute.id == null}">API 정보 등록</h3>
|
||||
<h3 th:if="${mockRoute.id != null}">API 정보 수정</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}">
|
||||
@@ -29,7 +29,7 @@
|
||||
</div>
|
||||
<div class="d-flex align-items-center mt-2">
|
||||
<div class="form-floating col-md-1 me-2">
|
||||
<select name="method" class="form-select" th:readonly="${mockRoute.id != null}"
|
||||
<select name="method" class="form-select" th:if="${mockRoute.id == null}"
|
||||
th:classappend="${#fields.hasErrors('method')}? 'is-invalid'" id="method">
|
||||
<option th:selected="${mockRoute.method == 'POST'}" value="POST">POST</option>
|
||||
<option th:selected="${mockRoute.method == 'GET'}" value="GET">GET</option>
|
||||
@@ -41,6 +41,18 @@
|
||||
<option th:selected="${mockRoute.method == 'TRACE'}" value="TRACE">TRACE</option>
|
||||
<option th:selected="${mockRoute.method == 'PATCH'}" value="PATCH">PATCH</option>
|
||||
</select>
|
||||
<select name="method" class="form-select" th:if="${mockRoute.id != null}"
|
||||
th:classappend="${#fields.hasErrors('method')}? 'is-invalid'" id="method">
|
||||
<option th:if="${mockRoute.method == 'POST'}" value="POST">POST</option>
|
||||
<option th:if="${mockRoute.method == 'GET'}" value="GET">GET</option>
|
||||
<option th:if="${mockRoute.method == 'PUT'}" value="PUT">PUT</option>
|
||||
<option th:if="${mockRoute.method == 'DELETE'}" value="DELETE">DELETE</option>
|
||||
<option th:if="${mockRoute.method == 'CONNECT'}" value="CONNECT">CONNECT</option>
|
||||
<option th:if="${mockRoute.method == 'HEAD'}" value="HEAD">HEAD</option>
|
||||
<option th:if="${mockRoute.method == 'OPTIONS'}" value="OPTIONS">OPTIONS</option>
|
||||
<option th:if="${mockRoute.method == 'TRACE'}" value="TRACE">TRACE</option>
|
||||
<option th:if="${mockRoute.method == 'PATCH'}" value="PATCH">PATCH</option>
|
||||
</select>
|
||||
<label for="method" class="form-label must">Method</label>
|
||||
</div>
|
||||
<div class="form-floating col-md">
|
||||
|
||||
@@ -7,17 +7,17 @@
|
||||
|
||||
<section layout:fragment="contentFragment">
|
||||
|
||||
<div class="container">
|
||||
<div class="container-fluid">
|
||||
<div class="card mt-2">
|
||||
<div class="card-header">
|
||||
<h1>응답 API 목록</h1>
|
||||
<h3>응답 API 목록</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="d-flex justify-content-between">
|
||||
<form role="form" class="row g-3" name="searchForm" th:action="@{/mgmt/routes/list_view.do}" method="get" th:object="${modelSearch}">
|
||||
<input name="page" type="hidden" value="1"/>
|
||||
<div class="col-auto">
|
||||
<input class="form-control" name="username" placeholder="이름" type="text" size="35" th:title="#{title.search}+ '' + #{input.input}"
|
||||
<input class="form-control" name="name" placeholder="이름" type="text" size="35" th:title="#{title.search}+ '' + #{input.input}"
|
||||
th:value="${modelSearch.name}"
|
||||
maxlength="255"/>
|
||||
</div>
|
||||
@@ -48,7 +48,7 @@
|
||||
<col style="width: 10%;">
|
||||
<col>
|
||||
<col>
|
||||
<col style="width: 5%;">
|
||||
<col style="width: 12%;">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout/default_layout}">
|
||||
<body>
|
||||
<section layout:fragment="contentFragment">
|
||||
<div class="container">
|
||||
<div class="container-fluid">
|
||||
<div class="card mt-2">
|
||||
<div class="card-header">
|
||||
<h1 th:if="${server.id == null}">서버 등록</h1>
|
||||
<h1 th:if="${server.id != null}">서버 수정</h1>
|
||||
<h3 th:if="${server.id == null}">서버 등록</h3>
|
||||
<h3 th:if="${server.id != null}">서버 수정</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<form name="serverForm" id="serverForm"
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
|
||||
<section layout:fragment="contentFragment">
|
||||
|
||||
<div class="container">
|
||||
<div class="container-fluid">
|
||||
<div class="card mt-1">
|
||||
<div class="card-header">
|
||||
<h1>서버 목록</h1>
|
||||
<h3>서버 목록</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="d-flex justify-content-between">
|
||||
|
||||
@@ -66,13 +66,13 @@
|
||||
</select>
|
||||
<label class="form-label must">Method</label>
|
||||
</div>
|
||||
<div class="form-floating col-md-1 me-1">
|
||||
<div class="form-floating col-md-2 me-1">
|
||||
<select class="form-select server" name="server" required>
|
||||
<option th:each="server : ${servers}" th:value="${server.id}" th:text="${server.name}" th:data-path="${server.basePath}"></option>
|
||||
</select>
|
||||
<label class="form-label must">Server</label>
|
||||
</div>
|
||||
<div class="form-floating col-md-1 me-1">
|
||||
<div class="form-floating col-md-2 me-1">
|
||||
<div class="form-floating col-md">
|
||||
<input type="text" name="basePath" class="form-control" readonly>
|
||||
<label class="must">base path</label>
|
||||
|
||||
@@ -6,10 +6,10 @@
|
||||
<body>
|
||||
|
||||
<section layout:fragment="contentFragment">
|
||||
<div class="container">
|
||||
<div class="container-fluid">
|
||||
<div class="card mt-2">
|
||||
<div class="card-header">
|
||||
<h1>비밀 번호 변경 </h1>
|
||||
<h3>비밀 번호 변경 </h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<form name="passwordChangeRequest" id="passwordChangeRequest" class="form-horizontal form-horizontal_l" method="post" th:action="@{/update_password.do}"
|
||||
|
||||
@@ -4,11 +4,11 @@
|
||||
<body>
|
||||
|
||||
<section layout:fragment="contentFragment">
|
||||
<div class="container">
|
||||
<div class="container-fluid">
|
||||
<div class="card mt-2">
|
||||
<div class="card-header">
|
||||
<h1 th:if="${user.esntlId == null}">내부 사용자 등록</h1>
|
||||
<h1 th:if="${user.esntlId != null}">내부 사용자 수정</h1>
|
||||
<h3 th:if="${user.esntlId == null}">내부 사용자 등록</h3>
|
||||
<h3 th:if="${user.esntlId != null}">내부 사용자 수정</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<form name="staffUserForm" id="staffUserForm" th:action="${user.esntlId==null}?@{/mgmt/users/register.do}:@{/mgmt/users/update.do}" th:object='${user}' method="post">
|
||||
|
||||
@@ -6,10 +6,10 @@
|
||||
<body>
|
||||
|
||||
<section layout:fragment="contentFragment">
|
||||
<div class="container">
|
||||
<div class="container-fluid">
|
||||
<div class="card mt-2">
|
||||
<div class="card-header">
|
||||
<h1>사용자 목록</h1>
|
||||
<h3>사용자 목록</h1>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="d-flex justify-content-between">
|
||||
|
||||
Reference in New Issue
Block a user