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

 new-repo.html

View raw Download
text/plain • 1.29 kiB
ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
{% trans %}Create repository{% endtrans %}
4
{% endblock %}
5
{% block breadcrumbs %}
6
{% endblock %}
7
8
{% block content %}
9
<x-frame style="--width: 384px; --padding: 1em;">
10
<x-vbox>
11
<h1>{% trans %}Create repository{% endtrans %}</h1>
12
<form method="post" id="create">
13
<div class="card">
14
<section>
15
<x-vbox>
16
<label for="name">
17
{% trans %}Name{% endtrans %}
18
<input id="name" name="name" required>
19
</label>
20
<x-hbox>
21
<label><input type="radio" name="visibility" value="2" checked>{% trans %}Public{% endtrans %}</label>
22
<label><input type="radio" name="visibility" value="1">{% trans %}Unlisted{% endtrans %}</label>
23
<label><input type="radio" name="visibility" value="0">{% trans %}Private{% endtrans %}</label>
24
</x-hbox>
25
<button style="width: 100%;" id="submit" type="submit">{% trans %}Create{% endtrans %}</button>
26
</x-vbox>
27
</section>
28
</div>
29
</form>
30
</x-vbox>
31
</x-frame>
32
{% endblock %}
33