form_burst.php 542 Bytes
<!DOCTYPE html>
<html>
	<style>
		.pannel-button{
			font-size: 1.6em;
			height: 40px;
			width: 200px;
			text-align: center;
			color: #000;
			background: #fff;
			border-radius: 10px;
		}
		.pannel-button:hover{
			background: #b8ff70;
		}
		.pannel-button:active{
			background: #07e50a;
		}
	</style>
	<form method="post" action="main.php">
		<input type="button" id="burst" name="burst" class="pannel-button" value="Burst" onclick="this.form.submit()"/>
		<input type="hidden" id="burst" name="burst" value="BURST"/>
	</form>
</html>