Created
September 2, 2016 14:54
-
-
Save tnrn9b/0df0435a93b7c60e5e00fd56307cfc0c to your computer and use it in GitHub Desktop.
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 lang="en-US"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>SQL Query</title> | |
</head> | |
<style> | |
input { | |
height:30px; | |
border:#ccc solid 1px | |
} | |
input[type="text"] { | |
width:500px | |
} | |
input[type="submit"] { | |
margin:1em; | |
width:120px | |
} | |
</style> | |
<body> | |
<form name="input" action="query" method="get"> | |
<div>SQL Command </div> | |
<input type="text" name="sql" placeholder="SELECT * FROM ..."/> | |
<input type="submit" value="Query"/> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment