Home
last modified time | relevance | path

Searched full:form (Results 1 – 25 of 3644) sorted by relevance

12345678910>>...146

/openbmc/webui-vue/src/views/SecurityAndAccess/Certificates/
H A DModalGenerateCsr.vue13 <b-form id="generate-csr-form" novalidate>
19 <b-form-group
23 <b-form-select
25 v-model="form.certificateType"
28 :state="getValidationState(v$.form.certificateType)"
29 @input="v$.form.certificateType.$touch()"
32 <b-form-select-option :value="null" disabled>
33 {{ $t('global.form.selectAnOption') }}
34 </b-form-select-option>
36 </b-form-select>
[all …]
H A DModalUploadCertificate.vue11 <b-form>
22 <b-form-group
26 <b-form-select
28 v-model="form.certificateType"
30 :state="getValidationState(v$.form.certificateType)"
31 @input="v$.form.certificateType.$touch()"
33 </b-form-select>
34 <b-form-invalid-feedback role="alert">
35 <template v-if="v$.form.certificateType.required.$invalid">
36 {{ $t('global.form.fieldRequired') }}
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/Ldap/
H A DLdap.vue5 <b-form novalidate @submit.prevent="handleSubmit">
8 <b-form-group
10 :label="$t('pageLdap.form.ldapAuthentication')"
13 <b-form-checkbox
14 v-model="form.ldapAuthenticationEnabled"
19 </b-form-checkbox>
20 </b-form-group>
23 <div class="form-background p-3">
24 <b-form-group
28 :disabled="!form.ldapAuthenticationEnabled || loading"
[all …]
H A DModalAddRoleGroup.vue14 <b-form id="role-group" @submit.prevent="handleSubmit">
19 <dd style="word-break: break-all">{{ form.groupName }}</dd>
25 <b-form-group
29 <b-form-input
31 v-model="form.groupName"
32 :state="getValidationState(v$.form.groupName)"
33 @input="v$.form.groupName.$touch()"
35 <b-form-invalid-feedback role="alert">
36 {{ $t('global.form.fieldRequired') }}
37 </b-form-invalid-feedback>
[all …]
/openbmc/webui-vue/docs/guide/quickstart/
H A Dforms.md4 [bootstrap-vue form component](https://bootstrap-vue.org/docs/components/form)
8 ## Form component
10 When creating a new form, use the `<b-form>`
11 [form component](https://bootstrap-vue.org/docs/components/form). Use the
15 ## Form group component
17 The `<b-form-group>`
18 [form group component](https://bootstrap-vue.org/docs/components/form-group)
19 pairs form controls with a legend or label, helper text, invalid/valid feedback
20 text, and visual validation state feedback. Learn more about commonly used form
23 - [Form checkbox](https://bootstrap-vue.org/docs/components/form-checkbox)
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/
H A DModalUser.vue11 <b-form id="form-user" novalidate @submit.prevent="handleSubmit">
13 <!-- Manual unlock form control -->
17 <template v-if="!v$.form.manualUnlock.$dirty">
27 v-model="form.manualUnlock"
33 :disabled="v$.form.manualUnlock.$dirty"
35 @click="v$.form.manualUnlock.$touch()"
43 <b-form-group :label="$t('pageUserManagement.modal.accountStatus')">
44 <b-form-radio
45 v-model="form.status"
49 @input="v$.form.status.$touch()"
[all …]
H A DModalSettings.vue8 <b-form id="form-settings" novalidate @submit.prevent="handleSubmit">
12 <b-form-group
16 <b-form-text id="lockout-threshold-help-block">
18 $t('global.form.valueMustBeBetween', {
23 </b-form-text>
24 <b-form-input
26 v-model.number="form.lockoutThreshold"
30 :state="getValidationState(v$.form.lockoutThreshold)"
31 @input="v$.form.lockoutThreshold.$touch()"
33 <b-form-invalid-feedback role="alert">
[all …]
/openbmc/webui-vue/src/views/Settings/Network/
H A DModalIpv4.vue8 <b-form id="form-ipv4" @submit.prevent="handleSubmit">
11 <b-form-group
15 <b-form-input
17 v-model="form.ipAddress"
19 :state="getValidationState(v$.form.ipAddress)"
20 @input="v$.form.ipAddress.$touch()"
22 <b-form-invalid-feedback role="alert">
23 <template v-if="v$.form.ipAddress.required.$invalid">
24 {{ $t('global.form.fieldRequired') }}
26 <template v-if="v$.form.ipAddress.ipAddress.$invalid">
[all …]
H A DModalIpv6.vue8 <b-form id="form-ipv6" @submit.prevent="handleSubmit">
11 <b-form-group
15 <b-form-input
17 v-model="form.ipAddress"
19 :state="getValidationState(v$.form.ipAddress)"
20 @input="v$.form.ipAddress.$touch()"
22 <b-form-invalid-feedback role="alert">
23 <template v-if="v$.form.ipAddress.required.$invalid">
24 {{ $t('global.form.fieldRequired') }}
26 <template v-if="v$.form.ipAddress.validateIpv6.$invalid">
[all …]
H A DModalDns.vue8 <b-form id="form-dns" @submit.prevent="handleSubmit">
11 <b-form-group
15 <b-form-input
17 v-model="form.staticDns"
19 :state="getValidationState(v$.form.staticDns)"
20 @input="v$.form.staticDns.$touch()"
22 <b-form-invalid-feedback role="alert">
23 <template v-if="v$.form.staticDns.required.$invalid">
24 {{ $t('global.form.fieldRequired') }}
26 <template v-if="v$.form.staticDns.ipAddress.$invalid">
[all …]
H A DModalHostname.vue8 <b-form id="hostname-settings" @submit.prevent="handleSubmit">
11 <b-form-group
15 <b-form-input
17 v-model="form.hostname"
19 :state="getValidationState(v$.form.hostname)"
20 @input="v$.form.hostname.$touch()"
22 <b-form-invalid-feedback role="alert">
23 <template v-if="v$.form.hostname.required.$invalid">
24 {{ $t('global.form.fieldRequired') }}
26 <template v-if="v$.form.hostname.validateHostname.$invalid">
[all …]
H A DModalMacAddress.vue8 <b-form id="mac-settings" @submit.prevent="handleSubmit">
11 <b-form-group
15 <b-form-input
17 v-model.trim="form.macAddress"
20 :state="getValidationState(v$.form.macAddress)"
21 @change="v$.form.macAddress.$touch()"
23 <b-form-invalid-feedback role="alert">
24 <div v-if="v$.form.macAddress.required.$invalid">
25 {{ $t('global.form.fieldRequired') }}
27 <div v-if="v$.form.macAddress.macAddress.$invalid">
[all …]
/openbmc/webui-vue/src/views/Settings/DateTime/
H A DDateTime.vue20 <dt>{{ $t('pageDateTime.form.date') }}</dt>
27 <dt>{{ $t('pageDateTime.form.time.label') }}</dt>
35 <b-form novalidate @submit.prevent="submitForm">
36 <b-form-group
41 <b-form-radio
42 v-model="form.configurationSelected"
46 {{ $t('pageDateTime.form.manual') }}
47 </b-form-radio>
50 <b-form-group
51 :label="$t('pageDateTime.form.date')"
[all …]
/openbmc/webui-vue/src/views/ProfileSettings/
H A DProfileSettings.vue20 <b-form @submit.prevent="submitForm">
26 <b-form-group
32 <b-form-input
34 v-model="form.currentPassword"
37 class="form-control-with-button"
40 </b-form-group>
41 <b-form-group
46 <b-form-text id="password-help-block">
53 </b-form-text>
55 <b-form-input
[all …]
/openbmc/webui-vue/src/views/Operations/VirtualMedia/
H A DModalConfigureConnection.vue12 <b-form>
13 <b-form-group
17 <b-form-input
19 v-model="form.serverUri"
21 :state="getValidationState(v$.form.serverUri)"
23 @input="v$.form.serverUri.$touch()"
25 <b-form-invalid-feedback role="alert">
26 <template v-if="v$.form.serverUri.required.$invalid">
27 {{ $t('global.form.fieldRequired') }}
29 </b-form-invalid-feedback>
[all …]
/openbmc/webui-vue/src/views/Settings/SnmpAlerts/
H A DModalAddDestination.vue6 <b-form id="form-destination">
11 <b-form-group
15 <b-form-input
17 v-model="form.ipAddress"
18 :state="getValidationState(v$.form.ipAddress)"
21 @blur="v$.form.ipAddress.$touch()"
24 <b-form-invalid-feedback role="alert">
25 <template v-if="v$.form.ipAddress.required.$invalid">
26 {{ $t('global.form.fieldRequired') }}
28 <template v-if="v$.form.ipAddress.ipAddress.$invalid">
[all …]
/openbmc/webui-vue/src/views/Operations/ServerPowerOperations/
H A DBootSettings.vue2 <div class="form-background p-3">
3 <b-form novalidate @submit.prevent="handleSubmit">
4 <b-form-group
11 <b-form-select
13 v-model="form.bootOption"
18 </b-form-select>
19 </b-form-group>
20 <b-form-checkbox
21 v-model="form.oneTimeBoot"
23 :disabled="form.bootOption === 'None'"
[all …]
/openbmc/webui-vue/src/views/Operations/KeyClear/
H A DKeyClear.vue16 <!-- Reset Form -->
17 <b-form id="key-clear" @submit.prevent="onKeyClearSubmit(keyOption)">
20 <b-form-group :label="$t('pageKeyClear.form.keyClearOptionsLabel')">
21 <b-form-radio-group
26 <b-form-radio class="mb-1" value="NONE">
27 {{ $t('pageKeyClear.form.none') }}
28 </b-form-radio>
29 <b-form-text id="key-clear-not-requested" class="ml-4 mb-3">
30 {{ $t('pageKeyClear.form.keyClearNotRequested') }}
31 </b-form-text>
[all …]
/openbmc/phosphor-webui/app/access-control/controllers/
H A Duser-accounts-modal-user.html10 <form name="form">
17 ng-class="{'notification-banner--warning': !form.lock.$dirty,
18 'notification-banner--information': form.lock.$dirty}">
19 <icon file="icon-warning.svg" aria-hidden="true" ng-if="!form.lock.$dirty"></icon>
20 <p class="notification-banner__text" ng-if="!form.lock.$dirty">Account locked</p>
21 … <p class="notification-banner__text" ng-if="form.lock.$dirty">Click "Save" to unlock account</p>
32 ng-click="form.lock.$setDirty()"
33 ng-disabled="form.lock.$dirty">Unlock</button>
74 … <div ng-if="form.username.$invalid && form.username.$touched" class="form__validation-message">
75 <span ng-show="form.username.$error.required">
[all …]
/openbmc/webui-vue/src/views/ChangePassword/
H A DChangePassword.vue14 <b-form novalidate @submit.prevent="changePassword">
15 <b-form-group
20 <b-form-input
22 v-model="form.password"
25 :state="getValidationState(v$.form.password)"
26 class="form-control-with-button"
27 @change="v$.form.password.$touch()"
29 </b-form-input>
30 <b-form-invalid-feedback role="alert">
31 <template v-if="v$.form.password.required.$invalid">
[all …]
/openbmc/webui-vue/src/assets/styles/bmc/custom/
H A D_forms.scss2 .form-text {
3 font-size: $form-label-font-size;
4 line-height: $form-line-height;
11 .col-form-label {
13 font-size: $form-label-font-size;
14 line-height: $form-line-height;
17 .form-group {
22 .form-control,
29 .form-control {
53 .form-control {
[all …]
/openbmc/webui-vue/src/views/Logs/Dumps/
H A DDumpsForm.vue2 <div class="form-background p-3">
3 <b-form id="form-new-dump" novalidate @submit.prevent="handleSubmit">
4 <b-form-group
5 :label="$t('pageDumps.form.selectDumpType')"
8 <b-form-select
15 <b-form-select-option :value="null" disabled>
16 {{ $t('global.form.selectAnOption') }}
17 </b-form-select-option>
19 </b-form-select>
20 <b-form-invalid-feedback role="alert">
[all …]
/openbmc/webui-vue/src/views/Operations/FactoryReset/
H A DFactoryReset.vue5 <!-- Reset Form -->
6 <b-form id="factory-reset" @submit.prevent="onResetSubmit">
9 <b-form-group :label="$t('pageFactoryReset.form.resetOptionsLabel')">
10 <b-form-radio-group
15 <b-form-radio
21 {{ $t('pageFactoryReset.form.resetBiosOptionLabel') }}
22 </b-form-radio>
23 <b-form-text id="reset-bios" class="ml-4 mb-3">
24 {{ $t('pageFactoryReset.form.resetBiosOptionHelperText') }}
25 </b-form-text>
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/
H A Dtoastertable-simple.html31 <form class="no-results form-inline">
32 <div class="form-group">
34 …<input class="form-control" id="new-search-input-{{table_name}}" name="search" type="text" placeho…
40 </form>
47 <form class="navbar-form navbar-left">
48 <div class="form-group">
50 …<input class="form-control" id="search-input-{{table_name}}" name="search" type="text" placeholder…
55 </form>
57 <form class="navbar-form navbar-right">
58 <div class="form-group">
[all …]
/openbmc/phosphor-webui/app/profile-settings/controllers/
H A Dprofile-settings-controller.html26 <form name="form">
40 … <div ng-if="form.password.$invalid && form.password.$dirty" class="form__validation-message">
41 <span ng-show="form.password.$error.required">
43 <span ng-show="form.password.$error.minlength || form.password.$error.maxlength">
58 first-password="form.password.$modelValue"/>
59 …<div ng-if="form.passwordConfirm.$invalid && form.passwordConfirm.$dirty" class="form__validation-…
60 <span ng-show="form.passwordConfirm.$error.required">
62 <span ng-show="form.passwordConfirm.$error.passwordConfirm"
63 ng-hide="form.passwordConfirm.$error.required">
67 <!-- Form actions -->
[all …]

12345678910>>...146