c825216f
lwadbled
feat(main.php): R...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!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>
|