Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions css/donation-popup.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -426,10 +426,19 @@ <h3>SUBSCRIBE</h3>
<input class="inputname" type="text" placeholder=""/>
<label>Expiry date</label>
<input class="expire" type="text" placeholder="MM / YYYY"/>
<div class="row">
<div class="col-md-7">
<label>Security Number</label>
<input class="ccv" type="text" placeholder="CVC" maxlength="3"
onkeypress='return event.charCode >= 48 && event.charCode <= 57'/>
<button class="buy"><i class="material-icons">lock</i> Pay 10.00 $</button>
</div>
<div class="col-md-5">
<label id="stick-left">Amount($)</label>
<input class="amount" type="text" maxlength="8"
onkeypress='return event.charCode >= 48 && event.charCode <= 57'/>
</div>
</div>
<button class="buy"><i class="material-icons">lock</i> Pay </button>
</div>
</div>
<!--POPUP END-->
Expand Down