Skip to content

Instantly share code, notes, and snippets.

View kkagill's full-sized avatar
🎯
Focusing

Sejong Shon kkagill

🎯
Focusing
View GitHub Profile
@kkagill
kkagill / index.html
Created September 8, 2019 06:42
7.4 토큰 판매 (UI & 렌더링)
<div id="MyTokensSaleTemplate" style="display: none;">
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="panel panel-primary">
<div class="panel-heading"></div>
<div class="panel-body">
<img style="width: 100%;" src="" title="">
<br/><br/>
<strong>영상 ID</strong>: <span class="video-id"></span><br/>
<strong>유튜버</strong>: <span class="author"></span><br/>
<strong>게시일</strong>: <span class="date-created"></span><br/>
@kkagill
kkagill / gist:bf06abcc49c16910b7b3e3d2c76fe303
Created September 8, 2019 06:41
7.2 토큰 판매 (승인 취소)
<button type="button"
class="btn btn-danger pull-right"
id="cancelApproval"
onclick="App.cancelApproval()">
토큰 판매 승인 취소
</button>
@kkagill
kkagill / index.html
Created September 8, 2019 06:40
7.1 토큰 판매 (승인)
<button type="button"
class="btn btn-success pull-right"
id="approve"
onclick="App.approve()">
토큰 판매 승인
</button>
@kkagill
kkagill / index.html
Created September 8, 2019 06:38
5.8 모든 토큰 (UI)
<div id="AllTokensTemplate" style="display: none;">
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="panel panel-primary">
<div class="panel-heading"></div>
<div class="panel-body">
<img style="width: 100%;" src="" title="">
<br/><br/>
<strong>영상 ID</strong>: <span class="video-id"></span><br/>
<strong>유튜버</strong>: <span class="author"></span><br/>
<strong>게시일</strong>: <span class="date-created"></span><br/>
@kkagill
kkagill / index.html
Created September 8, 2019 06:37
5.5 내 보유 토큰 (UI)
<div id="MyTokensTemplate" style="display: none;">
<div class="col-sm-6 col-md-4 col-lg-3">
<div class="panel panel-primary">
<div class="panel-heading"></div>
<div class="panel-body">
<img style="width: 100%;" src="" title="">
<br/><br/>
<strong>영상 ID</strong>: <span class="video-id"></span><br/>
<strong>유튜버</strong>: <span class="author"></span><br/>
<strong>게시일</strong>: <span class="date-created"></span><br/>
@kkagill
kkagill / index.html
Created September 8, 2019 06:35
5.1 토큰 발행 (중복 방지)
<div class="row">
<div class="afterLogin" style="display: none;">
<button type="button"
class="btn btn-warning pull-left"
id="createToken"
data-toggle="modal"
data-target="#createTokenModal">
YTT 토큰 발행
</button>
</div>