33 lines
654 B
HTML
33 lines
654 B
HTML
<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>
|