Web platform for sharing free data for ML and research

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 upload.html

View raw Download
text/plain • 834 B
ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}Upload | gigadata{% endblock %}
3
{% block content %}
4
<x-frame style="--width: 768px">
5
<form method="POST" class="vbox" enctype="multipart/form-data">
6
<h2>Upload</h2>
7
<label>
8
Name
9
<input type="text" name="title" required>
10
</label>
11
<label>
12
Description
13
<textarea name="description" required></textarea>
14
</label>
15
<label>
16
Origin URL
17
<input type="url" name="origin_url" required>
18
</label>
19
<label>
20
File
21
<input type="file" name="file" required>
22
</label>
23
<button type="submit">Upload</button>
24
</form>
25
</x-frame>
26
{% endblock %}