Use one field per receipt.
Add fields with button.
This commit is contained in:
parent
a0c3df96f3
commit
fd1690d45c
22
index.php
22
index.php
|
@ -31,7 +31,7 @@
|
||||||
{
|
{
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
input[type=file], input[list=list_tags]
|
input[type=file], input[list=list_tags], input[type=url]
|
||||||
{
|
{
|
||||||
margin-left: 10ch;
|
margin-left: 10ch;
|
||||||
}
|
}
|
||||||
|
@ -209,10 +209,9 @@
|
||||||
<input type="button" id="add_tag" value="➕" onclick="javascript:add_input_tag();">
|
<input type="button" id="add_tag" value="➕" onclick="javascript:add_input_tag();">
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<label for="receipts">Receipts:</label>
|
<label for="receipts">Receipts:</label><span class="hint">(One receipt per field or comma separated)</span><br>
|
||||||
<input type="url" id="receipts" name="receipts"
|
<input type="url" id="receipts" name="receipts[]" required>
|
||||||
placeholder="https://example.com/@user/1234567890,https://example.com/about/more" required>
|
<input type="button" id="add_receipt" value="➕" onclick="javascript:add_input_receipt();">
|
||||||
<!-- <input type="button" id="add_receipt" value="➕" disabled> -->
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<label for="screenshot1">Screenshots:</label><span class="hint">(optional)</span>
|
<label for="screenshot1">Screenshots:</label><span class="hint">(optional)</span>
|
||||||
|
@ -276,6 +275,19 @@
|
||||||
form.insertBefore(input_text, btn);
|
form.insertBefore(input_text, btn);
|
||||||
input_text.focus();
|
input_text.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function add_input_receipt()
|
||||||
|
{
|
||||||
|
const input_text = document.createElement("input");
|
||||||
|
input_text.setAttribute("type", "url");
|
||||||
|
input_text.setAttribute("name", "receipts[]");
|
||||||
|
|
||||||
|
const form = document.getElementById("form_add");
|
||||||
|
const btn = document.getElementById("add_receipt");
|
||||||
|
form.insertBefore(document.createElement("br"), btn);
|
||||||
|
form.insertBefore(input_text, btn);
|
||||||
|
input_text.focus();
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<datalist id="list_tags">
|
<datalist id="list_tags">
|
||||||
|
|
Reference in New Issue
Block a user