Created
October 11, 2016 15:04
-
-
Save lvidarte/7f953111af3ae44a0ae3a1c96bdcf51b to your computer and use it in GitHub Desktop.
Flask template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Minirobots</title> | |
<style type="text/css"> | |
td { text-align: center; } | |
button { font-size: 3em; margin: 1em; padding: 1em; } | |
table { width: 100%; } | |
</style> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<td colspan="2"> | |
<button onclick="window.location.href='/?forward=20'">Adelante</button> | |
</td> | |
</tr> | |
<tr> | |
<td> | |
<button onclick="window.location.href='/?left=90'">Izquierda</button> | |
</td> | |
<td> | |
<button onclick="window.location.href='/?right=90'">Derecha</button> | |
</td> | |
</tr> | |
<tr> | |
<td colspan="2"> | |
<button onclick="window.location.href='/?backward=20'">Atrás</button> | |
</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment