-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
63 lines (56 loc) · 1.99 KB
/
service.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DecUp - Настройки сервиса</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="header">
<div class="container">
<h1>Настройки сервиса</h1>
</div>
</div>
<div id="main">
<form class="container" method="post">
<input
value="Gitea"
name="name"
class="name"
style="margin-bottom: 0" />
<div class="button-row">
<a
class="primary destructive button"
style="line-height: 24px"
role="button">
<span>Остановить</span><img src="icons/png/stop.png" alt="Stop" />
</a>
<a
class="small tertiary no-text button"
style="line-height: 24px"
role="button">
<img src="icons/png/bigdocs.png" alt="Documentation" />
</a>
</div>
<a
class="secondary button"
style="line-height: 24px"
role="button"
href="home.html">
<span>Все сервисы</span>
</a>
<h3 style="margin-bottom: 8px">Полное доменное имя (FQDN)</h3>
<input class="code" name="fqdn" value="git.nickname.org" />
<h3 style="margin-bottom: 8px">Порты (через пробел)</h3>
<input class="code" name="ports" value="80 443 6969" />
<h3 style="margin-bottom: 8px">Переменные окружения</h3>
<textarea class="code" name="vars">VAR1=123123</textarea>
<button type="submit" class="primary button" style="line-height: 24px">
<span>Сохранить изменения</span>
<img src="icons/png/save.png" />
</button>
</form>
</div>
</body>
</html>