Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
nima-maghooli authored Apr 26, 2024
1 parent d9fae25 commit 882b904
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -923,23 +923,23 @@ <h4>Open Hours</h4>
<form method="post" id="myform">
<div class="row mb-3">
<div class="col-md-6">
<input type="text" class="form-control" name="FullName" id="FullName" placeholder="Your Name"/>
<input type="text" class="form-control" name="FullName" id="FullName" placeholder="Your Name" required="required"/>
</div>
<div class="col-md-6">
<input type="email" class="form-control" name="Email" id="Email" placeholder="Your Email"/>
<input type="email" class="form-control" name="Email" id="Email" placeholder="Your Email" required="required"/>
</div>
</div>
<div class="row mb-3">
<div class="col-md-6">
<input type="text" name="Textbox" id="Textbox" class="form-control" placeholder="Subject"/>
<input type="text" name="Textbox" id="Textbox" class="form-control" placeholder="Subject" required="required"/>
</div>
<div class="col-md-6">
<input type="file" class="form-control" name="SimpleFileUpload" id="SimpleFileUpload"/>
</div>
</div>
<div class="row mb-3">
<div class="col-md-12">
<textarea name="Message" class="form-control" id="Message" rows="5" maxlength="2048" placeholder="Message"></textarea>
<textarea name="Message" class="form-control" id="Message" rows="5" maxlength="2048" placeholder="Message" required="required"></textarea>
</div>
</div>
<div class="row mb-3">
Expand Down

0 comments on commit 882b904

Please sign in to comment.