diff options
Diffstat (limited to 'web/html')
| -rw-r--r-- | web/html/xui/form/tls_settings.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/web/html/xui/form/tls_settings.html b/web/html/xui/form/tls_settings.html index cfbda0f2..e4edb756 100644 --- a/web/html/xui/form/tls_settings.html +++ b/web/html/xui/form/tls_settings.html @@ -90,6 +90,14 @@ <a-form-item label='OCSP stapling'> <a-input-number v-model.number="cert.ocspStapling" :min="0"></a-input-number> </a-form-item> + <a-form-item label="One Time Loading"> + <a-switch v-model="cert.oneTimeLoading"></a-switch> + </a-form-item> + <a-form-item label='Usage Option'> + <a-select v-model="cert.usage" style="width: 50%" :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option v-for="key in USAGE_OPTION" :value="key">[[ key ]]</a-select-option> + </a-select> + </a-form-item> </template> </template> @@ -134,6 +142,17 @@ <a-input type="textarea" :rows="3" v-model="cert.key"></a-input> </a-form-item> </template> + <a-form-item label='OCSP stapling'> + <a-input-number v-model.number="cert.ocspStapling" :min="0"></a-input-number> + </a-form-item> + <a-form-item label="One Time Loading"> + <a-switch v-model="cert.oneTimeLoading"></a-switch> + </a-form-item> + <a-form-item label='Usage Option'> + <a-select v-model="cert.usage" style="width: 50%" :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option v-for="key in USAGE_OPTION" :value="key">[[ key ]]</a-select-option> + </a-select> + </a-form-item> </template> </template> |
