Skip to content

Instantly share code, notes, and snippets.

@lvidarte
Created October 11, 2016 15:04
Show Gist options
  • Save lvidarte/7f953111af3ae44a0ae3a1c96bdcf51b to your computer and use it in GitHub Desktop.
Save lvidarte/7f953111af3ae44a0ae3a1c96bdcf51b to your computer and use it in GitHub Desktop.
Flask template
<!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