@@ -42,7 +42,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
4242 < label for ="k8sNamespace " class ="block text-sm font-medium text-gray-700 ">
4343 Namespace
4444 </ label >
45- < input type ="text " id ="k8sNamespace " class ="mt-1 block input-box " x-model ="cfg.k8s.namespace ">
45+ < input type ="text " id ="k8sNamespace " class ="mt-1 block input-box w-full " x-model ="cfg.k8s.namespace ">
4646 < p class ="mt-2 text-sm text-gray-500 ">
4747 {{ i18n "hub_setup_deployment_kubernetes_namespace_description" . }}
4848 </ p >
@@ -83,7 +83,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
8383 < label for ="composePublicNetwork " class ="block text-sm font-medium text-gray-700 ">
8484 Public Network
8585 </ label >
86- < input type ="text " id ="composePublicNetwork " class ="mt-1 block input-box " x-model ="cfg.compose.publicNetwork ">
86+ < input type ="text " id ="composePublicNetwork " class ="mt-1 block input-box w-full " x-model ="cfg.compose.publicNetwork ">
8787 < p class ="mt-2 text-sm text-gray-500 ">
8888 {{ i18n "hub_setup_deployment_compose_traefik_public_network_description" . }}
8989 </ p >
@@ -112,7 +112,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
112112 < div class ="mt-5 md:mt-0 md:col-span-2 grid grid-cols-6 gap-6 ">
113113 < div class ="col-span-6 lg:col-span-3 ">
114114 < label for ="hubVersion " class ="block text-sm font-medium text-gray-700 "> Version</ label >
115- < select id ="hubVersion " class ="mt-1 block input-box " x-model ="cfg.hub.version ">
115+ < select id ="hubVersion " class ="mt-1 block input-box w-full " x-model ="cfg.hub.version ">
116116 < option > stable</ option >
117117 < option > beta</ option >
118118 </ select >
@@ -125,7 +125,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
125125 < label for ="hubPublicUrl " class ="block text-sm font-medium text-gray-700 ">
126126 {{ i18n "hub_setup_hub_public_url" . }}
127127 </ label >
128- < input type ="url " id ="hubPublicUrl " class ="mt-1 block input-box " x-model ="cfg.hub.publicUrl " :readonly ="deploymentType == 'compose-test' ">
128+ < input type ="url " id ="hubPublicUrl " class ="mt-1 block input-box w-full " x-model ="cfg.hub.publicUrl " :readonly ="deploymentType == 'compose-test' ">
129129 < p class ="mt-2 text-sm text-gray-500 ">
130130 {{ i18n "hub_setup_hub_public_url_description" . }}
131131 </ p >
@@ -135,7 +135,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
135135 < label for ="hubAdminUser " class ="block text-sm font-medium text-gray-700 ">
136136 {{ i18n "hub_setup_hub_admin_user" . }}
137137 </ label >
138- < input type ="text " id ="hubAdminUser " class ="mt-1 block input-box " x-model ="cfg.hub.adminUser ">
138+ < input type ="text " id ="hubAdminUser " class ="mt-1 block input-box w-full " x-model ="cfg.hub.adminUser ">
139139 < p class ="mt-2 text-sm text-gray-500 ">
140140 {{ i18n "hub_setup_hub_admin_user_description" . }}
141141 </ p >
@@ -145,7 +145,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
145145 < label for ="hubAdminPw " class ="block text-sm font-medium text-gray-700 ">
146146 {{ i18n "hub_setup_hub_admin_pw" . }}
147147 </ label >
148- < input type ="password " id ="hubAdminPw " class ="mt-1 block input-box " x-model ="cfg.hub.adminPw ">
148+ < input type ="password " id ="hubAdminPw " class ="mt-1 block input-box w-full " x-model ="cfg.hub.adminPw ">
149149 < p class ="mt-2 text-sm text-gray-500 ">
150150 {{ i18n "hub_setup_hub_admin_pw_description" . }}
151151 </ p >
@@ -184,7 +184,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
184184 < label for ="keycloakPublicUrl " class ="block text-sm font-medium text-gray-700 ">
185185 {{ i18n "hub_setup_keycloak_public_url" . }}
186186 </ label >
187- < input type ="url " id ="keycloakPublicUrl " class ="mt-1 block input-box " x-model ="cfg.keycloak.publicUrl " :readonly ="deploymentType == 'compose-test' ">
187+ < input type ="url " id ="keycloakPublicUrl " class ="mt-1 block input-box w-full " x-model ="cfg.keycloak.publicUrl " :readonly ="deploymentType == 'compose-test' ">
188188 < p class ="mt-2 text-sm text-gray-500 " x-show ="cfg.keycloak.useExternal ">
189189 {{ i18n "hub_setup_keycloak_public_url_external_description" . }}
190190 </ p >
@@ -197,7 +197,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
197197 < label for ="keycloakRealmId " class ="block text-sm font-medium text-gray-700 ">
198198 {{ i18n "hub_setup_keycloak_realm_id" . }}
199199 </ label >
200- < input type ="text " id ="keycloakRealmId " pattern ="[A-Za-z0-9_-]+ " class ="mt-1 block input-box " x-model ="cfg.keycloak.realmId ">
200+ < input type ="text " id ="keycloakRealmId " pattern ="[A-Za-z0-9_-]+ " class ="mt-1 block input-box w-full " x-model ="cfg.keycloak.realmId ">
201201 < p class ="mt-2 text-sm text-gray-500 ">
202202 {{ i18n "hub_setup_keycloak_realm_id_description" . }}
203203 </ p >
@@ -207,7 +207,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
207207 < label for ="keycloakAdminUser " class ="block text-sm font-medium text-gray-700 ">
208208 {{ i18n "hub_setup_keycloak_admin_user" . }}
209209 </ label >
210- < input type ="text " id ="keycloakAdminUser " class ="mt-1 block input-box " x-model ="cfg.keycloak.adminUser ">
210+ < input type ="text " id ="keycloakAdminUser " class ="mt-1 block input-box w-full " x-model ="cfg.keycloak.adminUser ">
211211 < p class ="mt-2 text-sm text-gray-500 ">
212212 {{ i18n "hub_setup_keycloak_admin_user_description" . }}
213213 </ p >
@@ -217,7 +217,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
217217 < label for ="keycloakAdminPw " class ="block text-sm font-medium text-gray-700 ">
218218 {{ i18n "hub_setup_keycloak_admin_pw" . }}
219219 </ label >
220- < input type ="password " id ="keycloakAdminPw " class ="mt-1 block input-box " x-model ="cfg.keycloak.adminPw ">
220+ < input type ="password " id ="keycloakAdminPw " class ="mt-1 block input-box w-full " x-model ="cfg.keycloak.adminPw ">
221221 < p class ="mt-2 text-sm text-gray-500 ">
222222 {{ i18n "hub_setup_keycloak_admin_pw_description" . }}
223223 </ p >
@@ -240,7 +240,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
240240 < label for ="dbAdminPw " class ="block text-sm font-medium text-gray-700 ">
241241 {{ i18n "hub_setup_database_admin_pw" . }}
242242 </ label >
243- < input type ="password " id ="dbAdminPw " class ="mt-1 block input-box " x-model ="cfg.db.adminPw ">
243+ < input type ="password " id ="dbAdminPw " class ="mt-1 block input-box w-full " x-model ="cfg.db.adminPw ">
244244 < p class ="mt-2 text-sm text-gray-500 ">
245245 {{ i18n "hub_setup_database_admin_pw_description" . }}
246246 </ p >
@@ -250,7 +250,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
250250 < label for ="dbHubPw " class ="block text-sm font-medium text-gray-700 ">
251251 {{ i18n "hub_setup_database_hub_pw" . }}
252252 </ label >
253- < input type ="password " id ="dbHubPw " class ="mt-1 block input-box " x-model ="cfg.db.hubPw ">
253+ < input type ="password " id ="dbHubPw " class ="mt-1 block input-box w-full " x-model ="cfg.db.hubPw ">
254254 < p class ="mt-2 text-sm text-gray-500 ">
255255 {{ i18n "hub_setup_database_hub_pw_description" . }}
256256 </ p >
@@ -260,7 +260,7 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
260260 < label for ="dbKeycloakPw " class ="block text-sm font-medium text-gray-700 ">
261261 {{ i18n "hub_setup_database_keycloak_pw" . }}
262262 </ label >
263- < input type ="password " id ="dbKeycloakPw " class ="mt-1 block input-box " x-model ="cfg.db.keycloakPw ">
263+ < input type ="password " id ="dbKeycloakPw " class ="mt-1 block input-box w-full " x-model ="cfg.db.keycloakPw ">
264264 < p class ="mt-2 text-sm text-gray-500 ">
265265 {{ i18n "hub_setup_database_keycloak_pw_description" . }}
266266 </ p >
@@ -288,15 +288,15 @@ <h2 class="text-lg font-medium leading-6 text-gray-900">
288288 < div class ="mt-5 md:mt-0 md:col-span-2 grid grid-cols-6 gap-6 ">
289289 < div class ="col-span-6 " x-show ="deploymentType == 'kubernetes' ">
290290 < label for ="k8sOutput " class ="block text-sm font-medium text-gray-700 "> k8s-hub.yml</ label >
291- < textarea id ="k8sOutput " rows ="10 " class ="mt-1 block input-box " x-model ="output.k8s " readonly > </ textarea >
291+ < textarea id ="k8sOutput " rows ="10 " class ="mt-1 block input-box w-full " x-model ="output.k8s " readonly > </ textarea >
292292 </ div >
293293 < div class ="col-span-6 " x-show ="deploymentType == 'compose-prod' || deploymentType == 'compose-test' ">
294294 < label for ="composeOutput " class ="block text-sm font-medium text-gray-700 "> docker-compose.yml</ label >
295- < textarea id ="composeOutput " rows ="10 " class ="mt-1 block input-box " x-model ="output.compose " readonly > </ textarea >
295+ < textarea id ="composeOutput " rows ="10 " class ="mt-1 block input-box w-full " x-model ="output.compose " readonly > </ textarea >
296296 </ div >
297297 < div class ="col-span-6 " x-show ="cfg.keycloak.useExternal ">
298298 < label for ="realmOutput " class ="block text-sm font-medium text-gray-700 "> realm.json</ label >
299- < textarea id ="realmOutput " rows ="10 " class ="mt-1 block input-box " x-model ="output.realm " readonly > </ textarea >
299+ < textarea id ="realmOutput " rows ="10 " class ="mt-1 block input-box w-full " x-model ="output.realm " readonly > </ textarea >
300300 </ div >
301301 < div class ="col-span-6 " x-show ="deploymentType == 'kubernetes' || deploymentType == 'compose-prod' ">
302302 < p class ="font-p mb-4 "> {{ i18n "hub_setup_output_hint" . | safeHTML }}</ p >
0 commit comments