DarkSleeky/user/plugins/ds-backend/assets/html/form.html

11 lines
652 B
HTML
Raw Normal View History

2022-04-19 17:41:59 -07:00
<div class="top" id="add">
<form id="new_url_form" action="javascript:add_link();" method="get">
<label>Link</label>
2023-01-22 21:16:44 -08:00
<input type="url" id="add-url" name="url" value="" class="text" placeholder="e.g. a.domain.com" required autocomplete="off">
2022-04-19 17:41:59 -07:00
<label class="short">Short URL</label>
2023-01-22 21:16:44 -08:00
<input type="text" id="add-keyword" name="keyword" value="" class="text" placeholder="e.g. theme" autocomplete="off">
<input type="hidden" id="nonce-add" name="nonce-add" value="" autocomplete="off">
<input type="button" id="add-button" name="add-button" value="Shorten" class="button" autocomplete="off" onclick="add_link();">
2022-04-19 17:41:59 -07:00
</form>
</div>