1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < title > Kotlin Publication Scripts Builder</ title >
6
+ <!-- UIkit CSS -->
7
+ < link rel ="stylesheet " href ="https://cdn.jsdelivr.net/npm/uikit@3.6.17/dist/css/uikit.min.css " />
8
+ </ head >
9
+ < body >
10
+ < div uk-sticky ="sel-target: .uk-navbar-container; cls-active: uk-navbar-sticky; bottom: #transparent-sticky-navbar ">
11
+ < nav class ="uk-navbar-container " uk-navbar >
12
+ < div class ="uk-navbar-left ">
13
+ < div class ="uk-padding-small uk-text-lead "> Kotlin Publication Scripts Builder</ div >
14
+ </ div >
15
+ < div class ="uk-navbar-right ">
16
+ < ul class ="uk-navbar-nav ">
17
+ < li uk-tooltip ="title: Open file "> < a href ="# "> < span uk-icon ="icon: pull "> </ span > </ a > </ li > <!--Open file-->
18
+ < li uk-tooltip ="title: Save file "> < a href ="# "> < span uk-icon ="icon: push "> </ span > </ a > </ li > <!--Save file-->
19
+ </ ul >
20
+ </ div >
21
+ </ nav >
22
+ </ div >
23
+ < form class ="uk-padding-small ">
24
+ < fieldset class ="uk-fieldset ">
25
+ < legend class ="uk-legend "> Project type</ legend >
26
+ < div class ="uk-padding-small ">
27
+ < ul class ="uk-subnav uk-subnav-pill ">
28
+ < li id ="mppProjectType " class ="uk-active "> < a href ="# "> Multiplatform</ a > </ li >
29
+ < li id ="jvmProjectType "> < a href ="# "> JVM</ a > </ li >
30
+ </ ul >
31
+ </ div >
32
+ < legend class ="uk-legend "> Licenses</ legend >
33
+ < div class ="uk-padding-small ">
34
+ < div class ="uk-margin uk-width-1-1 ">
35
+ < input id ="searchFilterInput " class ="uk-input uk-width-expand " type ="text " placeholder ="License search filter ">
36
+ </ div >
37
+ < button class ="uk-button uk-button-primary "> Add empty license</ button >
38
+ </ div >
39
+
40
+ < legend class ="uk-legend "> Project information</ legend >
41
+
42
+ < div class ="uk-padding-small ">
43
+ < div class ="uk-margin uk-width-1-1 ">
44
+ < label class ="uk-form-label " for ="projectNameInput "> Public project name</ label >
45
+ < input id ="projectNameInput " class ="uk-input uk-width-expand " type ="text " placeholder ="${project.name} ">
46
+ </ div >
47
+ < div class ="uk-margin uk-width-1-1 ">
48
+ < label class ="uk-form-label " for ="projectDescriptionInput "> Public project description</ label >
49
+ < input id ="projectDescriptionInput " class ="uk-input uk-width-expand " type ="text " placeholder ="${project.name} ">
50
+ </ div >
51
+ < div class ="uk-margin uk-width-1-1 ">
52
+ < label class ="uk-form-label " for ="projectUrlInput "> Public project URL</ label >
53
+ < input id ="projectUrlInput " class ="uk-input uk-width-expand " type ="text " placeholder ="Type url to github or other source with readme ">
54
+ </ div >
55
+ < div class ="uk-margin uk-width-1-1 ">
56
+ < label class ="uk-form-label " for ="projectVCSUrlInput "> Public project VCS URL (with .git)</ label >
57
+ < input id ="projectVCSUrlInput " class ="uk-input uk-width-expand " type ="text " placeholder ="Type url to github .git file ">
58
+ </ div >
59
+
60
+ < div class ="uk-margin ">
61
+ < label > < input id ="includeGpgSignToggle " class ="uk-checkbox " type ="checkbox " checked > Include GPG Signing</ label >
62
+ </ div >
63
+ < div class ="uk-margin ">
64
+ < label > < input id ="includeMavenCentralTargetRepoToggle " class ="uk-checkbox " type ="checkbox "> Include publication to MavenCentral</ label >
65
+ </ div >
66
+ </ div >
67
+
68
+ < legend class ="uk-legend "> Developers info</ legend >
69
+ < div class ="uk-padding-small ">
70
+ < button class ="uk-button uk-button-primary "> Add developer</ button >
71
+ </ div >
72
+
73
+ < legend class ="uk-legend "> Repositories info</ legend >
74
+ < div class ="uk-padding-small ">
75
+ < button class ="uk-button uk-button-primary "> Add repository</ button >
76
+ </ div >
77
+ </ fieldset >
78
+ </ form >
79
+ <!-- UIkit JS -->
80
+ < script src ="https://cdn.jsdelivr.net/npm/uikit@3.6.17/dist/js/uikit.min.js "> </ script >
81
+ < script src ="https://cdn.jsdelivr.net/npm/uikit@3.6.17/dist/js/uikit-icons.min.js "> </ script >
82
+ </ body >
83
+ </ html >
0 commit comments