Bugfix in contact.gohtml

master
Noah 2020-10-28 19:02:54 -07:00
parent 8f98e72e47
commit 708a850ecb
1 changed files with 2 additions and 2 deletions

View File

@ -16,11 +16,11 @@
<div class="form-row">
<div class="form-group col-md-6">
<label for="name">Your name:</label>
<input type="text" class="form-control" id="name" placeholder="Anonymous" value="{{ .V.name }}">
<input type="text" class="form-control" id="name" name="name" placeholder="Anonymous" value="{{ .V.name }}">
</div>
<div class="form-group col-md-6">
<label for="name">Your email:</label>
<input type="email" class="form-control" id="email" placeholder="name@example.com" value="{{ .V.email }}">
<input type="email" class="form-control" id="email" name="email" placeholder="name@example.com" value="{{ .V.email }}">
<small id="email-help" class="form-text text-muted">
If you want a response; optional.
</small>