Actual max. bet with current balance: TT (must be able to pay winning amount)
Owner:
Beneficiary:
×
UI builder
You can download front-end HTML file as it is, or edit some UI elements first using our WYSIWYG editor.
If you are familiar with HTML/CSS you can edit the file after downloading.
Just upload index.html file to your website - and your very own game is live!
You can edit text of UI elements, change colors and predefined numbers on bet amount buttons
Color 1
Color 2
You can also change color of every element in HTML/CSS
<table class="coinarea" align="center">
<!-- You can choose coin sides images for your images - just change all the img links in this file for links to your images (sides 1 and 2),
don't worry for the sizes - they are adjusted by css but don't use too large pictures as it can make your webpage heavy-->
<tr>
<td><label><input type="radio" form="formStake" name="stake" value="1" data-key="https://dappbuilder.org/images/coins/1.png" checked><img id="side1" alt="Side 1" class="side" src="https://dappbuilder.org/images/coins/1.png"></label></td>
<td><span id="res1" style="display: none"><img id="side1flip" class="heads animate-coin" src="https://dappbuilder.org/images/coins/1.png"></span>
<span id="res2" style="display: none"><img id="side2flip" class="tails animate-coin" src="https://dappbuilder.org/images/coins/2.png"></span>
<div id="coin"><img id="featureCoin" alt="Coin" class="defcoin" src="https://dappbuilder.org/images/coins/1.png"></div></td>
<td><label><input type="radio" form="formStake" name="stake" value="2" data-key="https://dappbuilder.org/images/coins/2.png"><img id="side2" alt="Side 2" class="side" src="https://dappbuilder.org/images/coins/2.png"></label></td>
</tr>
</table>