Add: maestro main menu page
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
<div class="container">
|
||||
<div class="maestro_manager_user">
|
||||
|
||||
<h1>사용자 관리</h1>
|
||||
|
||||
<h2>추가</h2>
|
||||
|
||||
<h3>1명 추가</h3>
|
||||
|
||||
<form action="/action_page.php" method="get" id="add_user">
|
||||
<input type="text" name="name">
|
||||
<input type="text" name="entercode">
|
||||
<button type="submit" form="add_user">추가</button>
|
||||
</form>
|
||||
|
||||
<textarea>
|
||||
사용자 이름 : (한글) 10글자, (영문) 20글자까지 입력 가능
|
||||
입장 코드 : 숫자 1~6자리 수
|
||||
</textarea>
|
||||
|
||||
|
||||
<h3>단체 추가</h3>
|
||||
|
||||
<form action="/action_page.php" method="get" id="add_users">
|
||||
<textarea>
|
||||
엑셀에서 아래와 같이 셀에 입력한 후에 복사하고 붙여넣기
|
||||
사용자 이름 | 입장 코드
|
||||
사용자 이름 | 입장 코드
|
||||
...
|
||||
</textarea>
|
||||
<button type="submit" form="add_users">추가</button>
|
||||
</form>
|
||||
|
||||
<textarea>
|
||||
사용자 이름 : (한글) 10글자, (영문) 20글자까지 입력 가능
|
||||
입장 코드 : 숫자 1~6자리 수
|
||||
</textarea>
|
||||
|
||||
|
||||
<h2>목록</h2>
|
||||
|
||||
<p>
|
||||
목록
|
||||
<button>보기</button>
|
||||
</p>
|
||||
|
||||
|
||||
<h2>검색</h2>
|
||||
|
||||
<p>
|
||||
검색
|
||||
아이디
|
||||
<input type="text" id="search_name"><button>찾기</button><br/>
|
||||
<br/>
|
||||
|
||||
<h3>검색 결과</h3>
|
||||
|
||||
사용자 이름
|
||||
<input type="text" id="result_name"><button>삭제</button><br/>
|
||||
입장 코드
|
||||
<input type="text" id="result_entercode"><button>수정</button>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="maestro_manager_app">
|
||||
|
||||
<h1>과목 관리</h1>
|
||||
|
||||
<h2>마우스</h2>
|
||||
|
||||
<form action="/action_page.php" method="get" id="app_mouse">
|
||||
<input type="checkbox" name="mouse">클릭 연습<br/>
|
||||
<input type="checkbox" name="mouse">더블 클릭 연습<br/>
|
||||
<button type="submit" form="app_mouse">적용</button>
|
||||
</form>
|
||||
|
||||
|
||||
<h2>타자</h2>
|
||||
|
||||
<form action="/action_page.php" method="get" id="app_typing">
|
||||
<input type="checkbox" name="typing">기본 자리<br/>
|
||||
<input type="checkbox" name="typing">왼손 윗글쇠<br/>
|
||||
<input type="checkbox" name="typing">basic<br/>
|
||||
<input type="checkbox" name="typing">left upper<br/>
|
||||
<button type="submit" form="app_typing">적용</button>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user