Web platform for sharing free image data for ML and research

Homepage: https://datasets.roundabout-host.com

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

 create-gallery.html

View raw Download
text/plain • 690 B
ASCII text
        
            
1
{% extends "default.html" %}
2
3
{% block title %}Create gallery | gigadata{% endblock %}
4
5
{% block content %}
6
<x-frame style="--width: 768px">
7
<form method="POST" class="vbox">
8
<h1>Create gallery</h1>
9
<p>
10
You can add content later.
11
</p>
12
<label>
13
<span class="required-asterisk">Title</span>
14
<input type="text" name="title" required>
15
</label>
16
<label>
17
Description
18
<textarea name="description" rows="4"></textarea>
19
</label>
20
<button type="submit">Create</button>
21
</form>
22
</x-frame>
23
{% endblock %}
24