You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
955 B
33 lines
955 B
2 years ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block main %}
|
||
|
<div id="theBox">
|
||
|
<!-- <noscript id="scriptReplaceTarget">-->
|
||
|
<span class="logo">^V</span>
|
||
|
<div>
|
||
|
<span>
|
||
|
lets you upload files and images
|
||
|
<form method="post">
|
||
|
<input type="file" name="file" required>
|
||
|
<input type="submit" value="upload">
|
||
|
</form>
|
||
|
</span>
|
||
|
<span>
|
||
|
or create short links
|
||
|
<form method="post">
|
||
|
<label for="link">to</label>
|
||
|
<input type="url" name="link" placeholder="https://youtu.be/dQw4w9WgXcQ" required>
|
||
|
<input type="submit" value="create short link">
|
||
|
</form>
|
||
|
</span>
|
||
|
<form method="post">
|
||
|
<div>
|
||
|
<span>or share some text</span>
|
||
|
<input type="submit" value="upload text">
|
||
|
</div>
|
||
|
<textarea name="text" placeholder="text area meow" required></textarea>
|
||
|
</form>
|
||
|
</div>
|
||
|
<!-- </noscript>-->
|
||
|
</div>
|
||
|
{% endblock main %}
|