Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/saey55/hugo-elate-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsaey55 <saey55@users.noreply.github.com>2017-02-22 14:09:57 +0300
committerGitHub <noreply@github.com>2017-02-22 14:09:56 +0300
commit91bddc2a93c0bb7ef1c117fe4e4d0d8292ea7916 (patch)
tree84bb5ed7f516504849df2d3c77c4a71931fbf7bc
parent056cfc5b15a4c878191be983faf1a7daf17668c9 (diff)
parent3ee54ccd6985c14c9fa63ead8870578be2cdb070 (diff)
Merge pull request #13 from m4ng0/master
Fixed name attributes in formspree form.
-rwxr-xr-xlayouts/partials/contact.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/contact.html b/layouts/partials/contact.html
index f0806bc..0c93dca 100755
--- a/layouts/partials/contact.html
+++ b/layouts/partials/contact.html
@@ -38,13 +38,13 @@
<div class="form-group ">
{{ with .Site.Params.contact.phone }}
<label for="phone" class="sr-only">{{ . | markdownify }}</label>
- <input id="phone" class="form-control" placeholder="{{ . }}" type="text">
+ <input id="phone" class="form-control" name="phone" placeholder="{{ . }}" type="text">
{{ end }}
</div>
<div class="form-group ">
{{ with .Site.Params.contact.message }}
<label for="message" class="sr-only">{{ . | markdownify }}</label>
- <textarea name="" id="message" cols="30" rows="5" class="form-control" name="message" placeholder="{{ . }}"></textarea>
+ <textarea id="message" cols="30" rows="5" class="form-control" name="message" placeholder="{{ . }}"></textarea>
{{ end }}
</div>
<div class="form-group ">