|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/resources/views/layouts/partials/ |
Upload File : |
<div id="calculator">
<div class="row text-center" id="calc">
<div class="calcBG col-md-12 text-center">
<div class="row" id="result">
<form name="calc">
<input type="text" class="screen text-right" name="result" readonly>
</form>
</div>
<div class="row">
<button id="allClear" type="button" class="btn btn-danger" onclick="clearScreen()">AC</button>
<button id="clear" type="button" class="btn btn-warning" onclick="clearScreen()">CE</button>
<button id="%" type="button" class="btn" onclick="calEnterVal(this.id)">%</button>
<button id="/" type="button" class="btn" onclick="calEnterVal(this.id)">รท</button>
</div>
<div class="row">
<button id="7" type="button" class="btn" onclick="calEnterVal(this.id)">7</button>
<button id="8" type="button" class="btn" onclick="calEnterVal(this.id)">8</button>
<button id="9" type="button" class="btn" onclick="calEnterVal(this.id)">9</button>
<button id="*" type="button" class="btn" onclick="calEnterVal(this.id)">x</button>
</div>
<div class="row">
<button id="4" type="button" class="btn" onclick="calEnterVal(this.id)">4</button>
<button id="5" type="button" class="btn" onclick="calEnterVal(this.id)">5</button>
<button id="6" type="button" class="btn" onclick="calEnterVal(this.id)">6</button>
<button id="-" type="button" class="btn" onclick="calEnterVal(this.id)">-</button>
</div>
<div class="row">
<button id="1" type="button" class="btn" onclick="calEnterVal(this.id)">1</button>
<button id="2" type="button" class="btn" onclick="calEnterVal(this.id)">2</button>
<button id="3" type="button" class="btn" onclick="calEnterVal(this.id)">3</button>
<button id="+" type="button" class="btn" onclick="calEnterVal(this.id)">+</button>
</div>
<div class="row">
<button id="0" type="button" class="btn" onclick="calEnterVal(this.id)">0</button>
<button id="." type="button" class="btn" onclick="calEnterVal(this.id)">.</button>
<button id="equals" type="button" class="btn btn-success" onclick="calculate()">=</button>
<button id="blank" type="button" class="btn"> </button>
</div>
</div>
</div>
</div>