41 lines
2.3 KiB
PHP
41 lines
2.3 KiB
PHP
<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> |