-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-field-url.html
33 lines (28 loc) · 1.1 KB
/
form-field-url.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!-- <pat-form-field-url> -->
{%- capture this_button_id -%}{{ include.label | slugify }}-event-url-follow-button{%- endcapture -%}
<label
{% include patterns/form-field-auto-save-attributes %}
class="
{% include patterns/form-field-auto-save-classes %}
url
{{ include.class }}
{% if include.depends %}pat-depends{% endif %}"
{% if include.depends %}
data-pat-depends="
{{ include.depends }};
transition: slide"
{% endif %}>
{% include patterns/i18n id=include.label %}{% include patterns/form-required.html %}
<input
{% include patterns/form-field-input-attributes %}
type="url"
/>
{% include patterns/form-has-changes.html %}
{% if include.help %}
{% include patterns/form-help.html
content=include.help
more=include.help_more %}
{% endif %}
{% include patterns/form-message.html message=include.message %}
</label>
<!-- </pat-form-field-url> -->