-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
509c203
commit 3ab620e
Showing
3 changed files
with
119 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Admin</title> | ||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="../css/admin.css"> | ||
</head> | ||
</br> | ||
<body> | ||
<h1>Access users</h1> | ||
<div id="table-container"> | ||
<div id="search-container"> | ||
<div id="userSearchForm"> | ||
<label for="userName">user name :</label> | ||
<input type="text" id="userName" name="userName"> | ||
<br> | ||
<label for="dateFrom">date from :</label> | ||
<input type="number" id="dateFrom" name="dateFrom" step="5"> | ||
<br> | ||
<label for="dateTo">date to :</label> | ||
<input type="number" id="dateTo" name="dateTo" step="5"> | ||
<br> | ||
<label for="sortBy">sort by :</label> | ||
<select id="sortBy" name="sortBy"> | ||
<option value="accessTime,asc">ascending</option> | ||
<option value="accessTime,desc">descending</option> | ||
</select> | ||
<br> | ||
<label for="pageSize">page size:</label> | ||
<select id="pageSize" name="pageSize"> | ||
<option value="10" selected>10</option> | ||
<option value="50">50</option> | ||
<option value="100">100</option> | ||
<option value="200">200</option> | ||
<option value="500">500</option> | ||
<option value="1000">1000</option> | ||
<option value="2000">2000</option> | ||
<option value="5000">5000</option> | ||
<option value="10000">10000</option> | ||
</select> | ||
<br> | ||
<label for="pageSize">display option:</label> | ||
<select id="displayOption" name="displayOption"> | ||
<option value="data" selected>data</option> | ||
<option value="email">email</option> | ||
</select> | ||
<br> | ||
|
||
|
||
<br> | ||
<label for="pageSize">display option:</label> | ||
<select id="date" name="displayOption"> | ||
<option value="1월" selected>data</option> | ||
<option value="2월">email</option> | ||
</select> | ||
<br> | ||
</div> | ||
</div> | ||
|
||
<table id="user-table"> | ||
<thead> | ||
<tr> | ||
<th>last login</th> | ||
<th>name</th> | ||
<th>email</th> | ||
<th>encrypt password</th> | ||
<th>block</th> | ||
</tr> | ||
</thead> | ||
<tbody id="table-body"> | ||
<!-- User rows will be dynamically added here --> | ||
</tbody> | ||
</table> | ||
<div id="pagination"> | ||
<!-- Pagination links will be dynamically generated here --> | ||
</div> | ||
</br> | ||
</br> | ||
</div> | ||
<script src="../js/admin-access.js"></script> | ||
<script src="https://unpkg.com/axios/dist/axios.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters