summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/shortcodes')
-rw-r--r--layouts/shortcodes/form-contact.html6
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>