inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

Klaytn 클레이튼 블록체인 어플리케이션 만들기 - 이론과 실습

계정 인증 UI

바디태그 따라 쓰기 귀찮으신분들을 위한 공유

283

정형식
1

- 서로 예의를 지키며 존중하는 문화를 만들어가요.
- 잠깐! 인프런 <div class="container">
    <div class="row">
      <div class="col-md-8 col-md-offset-2">       
        <h1 class="text-center">클레이튼(Klaytn)</h1>
        <h3 class="text-center">속전속결 덧셈 게임</h1>
        <h3 class="text-center">
          <code>3초안에 맞출 시 1 KLAY 지급 이벤트</code>  
          <button type="button" 
                  class="btn btn-info pull-right" 
                  id="login" 
                  data-toggle="modal"
                  data-target="#loginModal">
                  로그인
          </button>
          <button type="button" 
                  class="btn btn-info pull-right" 
                  id="logout" 
                  style="display: none;"
                  onclick="App.handleLogout()">
                  로그아웃
          </button>
        </h3>         
        <hr /> 
      </div>
    </div>
  </div>  

  <div class="modal fade" tabindex="-1" role="dialog" id="loginModal">
      <div class="modal-dialog modal-sm">
        <div class="modal-content">         
          <div class="modal-body">
            <div class="form-group">
              <label for="keystore">Keystore</label>
              <input type="file" id="keystore" onchange="App.handleImport()">
            </div>
            <div class="form-group">
              <label for="input-password">비밀번호</label>
              <input type="password" class="form-control" id="input-password" onchange="App.handlePassword()">
              <p class="help-block" id="message"></p>
            </div>
          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-default" data-dismiss="modal">닫기</button>
            <button type="button" class="btn btn-primary" id="submit" onclick="App.handleLogin()">제출</button>
          </div>
        </div><!-- /.modal-content -->
      </div><!-- /.modal-dialog -->
</div><!-- /.modal -->서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.

답변 0