-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
34 lines (33 loc) · 1.06 KB
/
form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!--//
This <form> is a stub. I minify this and paste it into pinboard.js line 4.
//-->
<!doctype html>
<head>
<head>
<title>Form</title>
<link rel="stylesheet" href="bookmarklet.css" />
</head>
<body>
<form id="pinboard-bookmarklet" method="POST">
<a id="pinboard-close">X</a>
<fieldset>
<input type="hidden" id="pb_auth_token" name="pb_auth_token" value=""/>
<ul>
<li>
<input name="tags" id="pb_tags" placeholder="Tags" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" value="">
</li>
<li>
<input name="pb_title" id="pb_title" type="text" placeholder="Title" autocomplete="off" autocapitalize="off" value="">
</li>
<li>
<textarea name="pb_description" id="pb_description" placeholder="Description" autocomplete="off" autocapitalize="off" rows="2"></textarea>
</li>
<li>
<input type="text" id="pb_url" name="pb_url" placeholder="URL" autocorrect="off" value="">
</li>
<li><input type="submit" value="✓"/></li>
</ul>
</fieldset>
</form>
</body>
</html>