34 lines
1.4 KiB
Handlebars
34 lines
1.4 KiB
Handlebars
<div class="panel">
|
|
<h2>Publish</h2>
|
|
<div class="col-left">
|
|
<div id="drop-zone" ondrop="drop_handler(event);" ondragover="dragover_handler(event);" ondragend="dragend_handler(event)">
|
|
<p>Drag and drop your file here, or choose your file below.</p>
|
|
<input type="file" id="siofu_input" name="file" accept="video/*,image/*" onchange="previewAndStageFile(event.target.files[0])" enctype="multipart/form-data"/>
|
|
</div>
|
|
<div id="asset-preview-holder">
|
|
<img id="asset-preview" src="" alt="asset preview"/>
|
|
</div>
|
|
</div>
|
|
<div class="col-right">
|
|
<textarea id="direct-link-holder" hidden="true">No URL yet</textarea>
|
|
<div id="publish-active-area">
|
|
|
|
<input type="text" id="publish-name" placeholder="Your claim name" class="form-control">
|
|
<p>
|
|
<label for="publish-license">License:</label>
|
|
<select type="text" id="publish-license" name="license" value="license">
|
|
<option value="Public Domain">Public Domain</option>
|
|
<option value="Creative Commons">Creative Commons</option>
|
|
</select>
|
|
<br />
|
|
<input type="checkbox" id="publish-nsfw">
|
|
<label for="publish-nsfw">NSFW</label>
|
|
</p>
|
|
<p>
|
|
<button id="publish-submit" onclick="publishSelectedImage(event)">Publish</button>
|
|
<a href="/"><button id="publish-reset">Reset</button></a>
|
|
</p>
|
|
<p><i>By clicking 'Publish' I attest that I have read and agree to the <a href="https://lbry.io/termsofservice" target="_blank">LBRY terms of service</a>.</i></p>
|
|
</div>
|
|
</div>
|
|
</div>
|