2021-09-09 11:01:56 -04:00
|
|
|
<label>{{i18n "admin.logs.screened_ips.form.label"}}</label>
|
2022-07-05 13:41:31 -04: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 08:22:14 -05:00
|
|
|
|
2022-07-05 13:41:31 -04:00
|
|
|
<ComboBox
|
|
|
|
@content={{this.actionNames}}
|
|
|
|
@value={{this.actionName}}
|
|
|
|
@onChange={{action (mut this.actionName)}}
|
|
|
|
/>
|
2020-02-03 08:22:14 -05:00
|
|
|
|
2022-07-13 20:59:33 -04:00
|
|
|
<DButton
|
|
|
|
@type="submit"
|
|
|
|
@class="btn-default"
|
2023-02-23 10:32:53 -05:00
|
|
|
@action={{action "submitForm"}}
|
2022-07-13 20:59:33 -04:00
|
|
|
@disabled={{this.formSubmitted}}
|
|
|
|
@label="admin.logs.screened_ips.form.add"
|
|
|
|
/>
|