Capitalize subject in contact form placeholder

This commit is contained in:
Ashwin Madavan 2021-10-10 19:06:50 -07:00 committed by GitHub
parent 9d0a16a4d7
commit 92240aeb3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@
<form action="{{ .Site.Params.contact_form_action | safeURL }}" method="POST"> <form action="{{ .Site.Params.contact_form_action | safeURL }}" method="POST">
<input type="text" id="name" name="name" placeholder="Name" class="form-control mb-4 shadow rounded-0"> <input type="text" id="name" name="name" placeholder="Name" class="form-control mb-4 shadow rounded-0">
<input type="email" id="mail" name="mail" placeholder="Email" class="form-control mb-4 shadow rounded-0"> <input type="email" id="mail" name="mail" placeholder="Email" class="form-control mb-4 shadow rounded-0">
<input type="text" id="subject" name="subject" placeholder="subject" <input type="text" id="subject" name="subject" placeholder="Subject"
class="form-control mb-4 shadow rounded-0"> class="form-control mb-4 shadow rounded-0">
<textarea name="message" id="message" placeholder="Message" <textarea name="message" id="message" placeholder="Message"
class="form-control mb-4 shadow rounded-0"></textarea> class="form-control mb-4 shadow rounded-0"></textarea>