Initial commit

This commit is contained in:
F4 2024-09-20 19:22:01 +01:00
commit 6848cdd062
17 changed files with 646 additions and 0 deletions

View 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>