Skip to content

Commit

Permalink
Fix HTML syntax in report.phtml error template
Browse files Browse the repository at this point in the history
Added missing quotes to the div tags with class "control".
  • Loading branch information
abcpremium authored May 23, 2018
1 parent 67b5fe7 commit 07f96a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pub/errors/default/report.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -36,25 +36,25 @@
</div>
<div class="field lastname required">
<label for="lastname" class="label">Last Name</label>
<div class=control">
<div class="control">
<input type="text" name="lastname" id="lastname" value="<?= $this->postData['lastName'] ?>" title="Last Name" class="required-entry input-text" />
</div>
</div>
<div class="field email required">
<label for="email_address" class="label">Email Address</label>
<div class=control">
<div class="control">
<input type="text" name="email" id="email_address" value="<?= $this->postData['email'] ?>" title="Email Address" class="validate-email required-entry input-text" />
</div>
</div>
<div class="field telephone">
<label for="telephone" class="label">Telephone</label>
<div class=control">
<div class="control">
<input type="text" name="telephone" id="telephone" value="<?= $this->postData['telephone'] ?>" title="Telephone" class="input-text" />
</div>
</div>
<div class="field comment">
<label for="comment" class="label">Comment</label>
<div class=control">
<div class="control">
<textarea name="comment" cols="5" rows="3" class="textarea"><?= $this->postData['comment'] ?></textarea>
</div>
</div>
Expand Down

0 comments on commit 07f96a5

Please sign in to comment.