Initial commit
This commit is contained in:
commit
6848cdd062
17 changed files with 646 additions and 0 deletions
33
assets/templates/bulk_creation_form.html
Normal file
33
assets/templates/bulk_creation_form.html
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<style>
|
||||
form > * {
|
||||
width: 100%;
|
||||
}
|
||||
form > textarea {
|
||||
min-height: 20em;
|
||||
}
|
||||
fieldset {
|
||||
width: 50%;
|
||||
margin: 5em auto;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
fieldset > form > div.flex,
|
||||
fieldset > form > div.flex > * {
|
||||
width: 100%;
|
||||
}
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
</style>
|
||||
|
||||
<fieldset>
|
||||
<legend>Add links from onetab</legend>
|
||||
<form method="POST" target="/links/bulk">
|
||||
<input type="datetime-local" name="created_at" value="" />
|
||||
<br>
|
||||
<textarea type="text" maxlength="1000000" name="hrefs" placeholder="<href> | <title>"></textarea>
|
||||
<div class="flex">
|
||||
<input type="reset" value="Reset" />
|
||||
<input type="submit" value="Send" />
|
||||
</div>
|
||||
</form>
|
||||
</fieldset>
|
||||
Loading…
Add table
Add a link
Reference in a new issue