Upload files to 'user'

This commit is contained in:
2022-09-24 06:29:00 +00:00
parent a1ff8c5171
commit de5d945f2e
57 changed files with 10608 additions and 0 deletions

10
user/form.html Normal file
View File

@ -0,0 +1,10 @@
<div class="top" id="add">
<form id="new_url_form" action="javascript:add_link();" method="get">
<label>Link</label>
<input type="url" id="add-url" name="url" value="" class="text" placeholder="e.g. sleeky.flynntes.com" required>
<label class="short">Short URL</label>
<input type="text" id="add-keyword" name="keyword" value="" class="text" placeholder="e.g. theme">
<input type="hidden" id="nonce-add" name="nonce-add" value="">
<input type="button" id="add-button" name="add-button" value="Shorten" class="button" onclick="add_link();">
</form>
</div>