You're looking at it

Homepage: https://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

 new-repo.html

View raw Download
text/plain • 1.92 kiB
ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
{% trans %}Create repository{% endtrans %}
4
{% endblock %}
5
{% block breadcrumbs %}
6
{% endblock %}
7
{% block seo %}
8
<meta name="description" content="{% trans %}Create a repository{% endtrans %}">
9
{% endblock %}
10
11
{% block content %}
12
<x-frame style="--width: 384px; --padding: 1em;">
13
<x-vbox>
14
<h1>{% trans %}Create repository{% endtrans %}</h1>
15
<form method="post" id="create">
16
<div class="card">
17
<section>
18
<x-vbox>
19
<label>
20
{% trans %}Account{% endtrans %}
21
<select id="account" name="account" required>
22
<option value="{{ logged_in_user }}">{{ logged_in_user }} (personal)</option>
23
{% for user in user_object.trusted_by %}
24
<option value="{{ user.host.username }}">{{ user.host.username }}</option>
25
{% endfor %}
26
</select>
27
<label>
28
{% trans %}Name{% endtrans %}
29
<input id="name" name="name" required>
30
</label>
31
<x-hbox>
32
<label><input type="radio" name="visibility" value="2" checked>{% trans %}Public{% endtrans %}</label>
33
<label><input type="radio" name="visibility" value="1">{% trans %}Unlisted{% endtrans %}</label>
34
<label><input type="radio" name="visibility" value="0">{% trans %}Private{% endtrans %}</label>
35
</x-hbox>
36
<button style="width: 100%;" id="submit" type="submit">{% trans %}Create{% endtrans %}</button>
37
</x-vbox>
38
</section>
39
</div>
40
</form>
41
</x-vbox>
42
</x-frame>
43
{% endblock %}
44