Forked from jameshibbard/tampermonkey_form_demo.html
Created
January 18, 2018 21:47
-
-
Save kdncode/8ac3b8b7a9ad5ec9dde2956730ba510e to your computer and use it in GitHub Desktop.
Tamper monkey form demonstration
This file contains 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> | |
<meta charset="utf-8"> | |
<title>Tampermonkey form auto-fill</title> | |
<style> | |
label{display: inline-block; margin:5px 0px;} | |
</style> | |
</head> | |
<body> | |
<form> | |
<div> | |
<label for="name">Your name:</label> | |
<input type="text" id="name"> | |
</div> | |
<div> | |
<label for="email">Your email:</label> | |
<input type="text" id="email"> | |
</div> | |
<div> | |
<label for="comments">Your comments:</label><br> | |
<textarea id="comments" rows="15" cols="50"></textarea> | |
</div> | |
<input type="submit" value="Submit"> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment