aboutsummaryrefslogtreecommitdiff
path: root/app/views/contact.view.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-07-24 01:50:29 -0400
committerThedro Neely <thedroneely@gmail.com>2019-07-24 01:50:29 -0400
commit982ad638fe1266fb3d1b26a374afc0fc87cd0b4c (patch)
treefe3002ba36cab356b4a09c9f235f59bcfb75b6b0 /app/views/contact.view.php
parent67b9333a92fdd60119ec7f0a6d6ec86fd3e00aa2 (diff)
downloadthedroneely.com-982ad638fe1266fb3d1b26a374afc0fc87cd0b4c.tar.gz
thedroneely.com-982ad638fe1266fb3d1b26a374afc0fc87cd0b4c.tar.bz2
thedroneely.com-982ad638fe1266fb3d1b26a374afc0fc87cd0b4c.zip
app/views/contact: Require on front end fields
Diffstat (limited to 'app/views/contact.view.php')
-rw-r--r--app/views/contact.view.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/contact.view.php b/app/views/contact.view.php
index eb0a24d..371aa98 100644
--- a/app/views/contact.view.php
+++ b/app/views/contact.view.php
@@ -44,7 +44,7 @@
<div class="field has-addons">
<p class="control is-expanded">
<input class="input <?php echo $border = isset($emailError) ? 'is-danger' : '';?>"
- type="email" name="26472" value="<?php echo $email ?? '' ?>">
+ type="email" name="26472" value="<?php echo $email ?? '' ?>" required>
</p>
</div>
</div>
@@ -57,7 +57,7 @@
<div class="field-body">
<div class="field">
<div class="control">
- <textarea class="textarea" name="26478" placeholder=""><?php echo $message ?? '' ?></textarea>
+ <textarea class="textarea" name="26478" placeholder="" required><?php echo $message ?? '' ?></textarea>
</div>
</div>
</div>