diff options
Diffstat (limited to 'components/package/contents/ui/NewAccountDialog.qml')
-rw-r--r-- | components/package/contents/ui/NewAccountDialog.qml | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/components/package/contents/ui/NewAccountDialog.qml b/components/package/contents/ui/NewAccountDialog.qml index b2705c94..59f06b67 100644 --- a/components/package/contents/ui/NewAccountDialog.qml +++ b/components/package/contents/ui/NewAccountDialog.qml | |||
@@ -105,6 +105,10 @@ Rectangle { | |||
105 | width: pageRoot.width * 0.4 | 105 | width: pageRoot.width * 0.4 |
106 | 106 | ||
107 | text: "kolabnow" | 107 | text: "kolabnow" |
108 | |||
109 | onClicked: { | ||
110 | stack.push(kolabnow) | ||
111 | } | ||
108 | } | 112 | } |
109 | 113 | ||
110 | Button { | 114 | Button { |
@@ -138,7 +142,44 @@ Rectangle { | |||
138 | width: dialog.width | 142 | width: dialog.width |
139 | } | 143 | } |
140 | } | 144 | } |
141 | } | ||
142 | 145 | ||
146 | Component { | ||
147 | id: kolabnow | ||
148 | |||
149 | Item { | ||
150 | id: pageRoot | ||
151 | |||
152 | height: dialog.height | ||
153 | width: dialog.width | ||
154 | |||
155 | Column { | ||
156 | anchors.centerIn: parent | ||
157 | |||
158 | spacing: Kirigami.Units.largeSpacing | ||
159 | |||
160 | TextField { | ||
161 | anchors.horizontalCenter: parent.horizontalCenter | ||
162 | width: pageRoot.width * 0.4 | ||
163 | |||
164 | placeholderText: "Title of Account (e.g. work, private, kolabnow...)" | ||
165 | } | ||
166 | |||
167 | TextField { | ||
168 | anchors.horizontalCenter: parent.horizontalCenter | ||
169 | width: pageRoot.width * 0.4 | ||
170 | |||
171 | placeholderText: "Email (e.g. jens.moep@kolabnow.com)" | ||
172 | } | ||
173 | |||
174 | TextField { | ||
175 | anchors.horizontalCenter: parent.horizontalCenter | ||
176 | width: pageRoot.width * 0.4 | ||
177 | |||
178 | placeholderText: "Password" | ||
179 | } | ||
180 | } | ||
181 | } | ||
182 | } | ||
183 | } | ||
143 | } | 184 | } |
144 | } | 185 | } |