2021-09-09 23:01:56 +08:00
|
|
|
<label>{{i18n "admin.logs.screened_ips.form.label"}}</label>
|
2022-07-06 01:41:31 +08:00
|
|
|
<TextField
|
|
|
|
@value={{this.ip_address}}
|
|
|
|
@disabled={{this.formSubmitted}}
|
|
|
|
@class="ip-address-input"
|
|
|
|
@placeholderKey="admin.logs.screened_ips.form.ip_address"
|
|
|
|
@autocorrect="off"
|
|
|
|
@autocapitalize="off"
|
|
|
|
/>
|
2020-02-03 21:22:14 +08:00
|
|
|
|
2022-07-06 01:41:31 +08:00
|
|
|
<ComboBox
|
|
|
|
@content={{this.actionNames}}
|
|
|
|
@value={{this.actionName}}
|
|
|
|
@onChange={{action (mut this.actionName)}}
|
|
|
|
/>
|
2020-02-03 21:22:14 +08:00
|
|
|
|
2022-07-14 08:59:33 +08:00
|
|
|
<DButton
|
|
|
|
@type="submit"
|
|
|
|
@class="btn-default"
|
2023-02-23 23:32:53 +08:00
|
|
|
@action={{action "submitForm"}}
|
2022-07-14 08:59:33 +08:00
|
|
|
@disabled={{this.formSubmitted}}
|
|
|
|
@label="admin.logs.screened_ips.form.add"
|
|
|
|
/>
|