Add: maestro main menu tab
This commit is contained in:
@@ -1,4 +1,28 @@
|
||||
<script>
|
||||
<style>
|
||||
|
||||
.home {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.header_menu {
|
||||
float: right;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.header_menu li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
|
||||
function logout() {
|
||||
sessionStorage.clear();
|
||||
@@ -10,20 +34,30 @@ function logout() {
|
||||
|
||||
<div class="container">
|
||||
|
||||
<span class="col two">
|
||||
<a href="./../main/index.html" id="home" class="btn btn-orange" style="padding: 1.1em;">첫 화면</a>
|
||||
<span class="home">
|
||||
<span class="col">
|
||||
<a href="./../main/index.html" id="login_maestro" class="btn btn-orange">마우스 타자<br/>연습 홈</a>
|
||||
</span>
|
||||
</span>
|
||||
|
||||
<span class="col two" style="float: right;">
|
||||
<a href="#" id="logout_maestro" class="btn btn-sea" onClick="logout()">마에스트로<br/>로그아웃</a>
|
||||
</span>
|
||||
|
||||
<span class="col two" style="float: right;">
|
||||
<a href="#" target="_blank" id="enter_test_player" class="btn btn-rouge">마에스트로<br/>기록 삭제</a>
|
||||
</span>
|
||||
|
||||
<span class="col two" style="float: right;">
|
||||
<a href="./../client/menu_app.html" target="_blank" id="delete_test_player_history" class="btn btn-rouge">마에스트로<br/>입장</a>
|
||||
</span>
|
||||
<nav>
|
||||
<ul class="header_menu">
|
||||
<li>
|
||||
<span class="col">
|
||||
<a href="./../client/menu_app.html" target="_blank" id="delete_test_player_history" class="btn btn-rouge">마에스트로<br/>앱 실행</a>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class="col">
|
||||
<a href="#" target="_blank" id="enter_test_player" class="btn btn-sea">마에스트로<br/>앱 기록 삭제</a>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class="col">
|
||||
<a href="#" id="logout_maestro" class="btn btn-sea" onClick="logout()">마에스트로<br/>로그아웃</a>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user