c825216f
lwadbled
feat(main.php): R...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<div class="text-center">
<div class="btn-group" role="group" aria-label="gauche_droite">
<form method="post" action="main.php?tab=Global">
<input type="button" id="fleches" name="fleches" class="pave-numerique" value="<" onclick="this.form.submit();"/>
<input type="hidden" id="fleches" name="fleches" value="LEFT"/>
</form>
<form method="post" action="main.php?tab=Global">
<input type="button" id="fleches" name="fleches" class="pave-numerique" value=">" onclick="this.form.submit();"/>
<input type="hidden" id="fleches" name="fleches" value="RIGHT"/>
</form>
</div>
</div>
</html>
|