diff options
| author | Serghei Iakovlev <egrep@protonmail.ch> | 2022-07-04 17:21:05 +0200 |
|---|---|---|
| committer | Serghei Iakovlev <egrep@protonmail.ch> | 2022-07-04 17:21:05 +0200 |
| commit | f1cb48a7e000be9332d22aa5f0f40bb36015839c (patch) | |
| tree | 5502eea3ea5f056bceced4b7ebff23b7b48f2198 /layouts/shortcodes | |
| parent | 6ac42272df15c45445426435bdc05060a01185d4 (diff) | |
| download | gohugo-theme-ed-f1cb48a7e000be9332d22aa5f0f40bb36015839c.tar.gz | |
Rename form element: contact-form-label => form-label
Diffstat (limited to 'layouts/shortcodes')
| -rw-r--r-- | layouts/shortcodes/form-contact.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/shortcodes/form-contact.html b/layouts/shortcodes/form-contact.html index 335181a..a811ae6 100644 --- a/layouts/shortcodes/form-contact.html +++ b/layouts/shortcodes/form-contact.html @@ -1,17 +1,17 @@ <div id="site-contact" class="contact-form"> <form accept-charset="UTF-8" action="{{ site.Params.Contact.formAction | default site.BaseURL }}" method="POST" id="contact-form"> <div class="form-item"> - <label for="name" class="contact-form-label">{{ i18n "your_name" }}</label> + <label for="name" class="form-label">{{ i18n "your_name" }}</label> <input type="text" id="name" name="name" class="contact-form-input form-input" placeholder="" required aria-labelledby="name"> </div> <div class="form-item"> - <label for="email" class="contact-form-label">{{ i18n "email_address" }}</label> + <label for="email" class="form-label">{{ i18n "email_address" }}</label> <input type="email" id="email" name="email" class="contact-form-input form-input" placeholder="" required aria-labelledby="email"> </div> <div class="form-item"> - <label for="message" class="contact-form-label">{{ i18n "message" }}</label> + <label for="message" class="form-label">{{ i18n "message" }}</label> <textarea id="message" name="message" class="contact-form-textarea form-input" placeholder="" required aria-labelledby="message"></textarea> </div> |
