Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed contact us section #10

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@


<style>
.required {
color: red;
}
#chatbot-container {
z-index: 999;
color: #2c2325;
Expand Down Expand Up @@ -889,7 +892,7 @@ <h2>About IRIS</h2>
</div>
</section>

<!-- <section class="contact-us" id="contact">
<section class="contact-us" id="contact">
<div class="container">
<div class="row">
<div class="col-lg-9 align-self-center">
Expand All @@ -902,27 +905,30 @@ <h2>Register Yourself</h2>
</div>
<div class="col-lg-4">
<fieldset>
<input name="name" type="text" id="name" placeholder="Please Put edu12345=" required="">
<span class="required">*</span>Name
<input name="name" type="text" id="name" placeholder="Your NAME..." required>
</fieldset>
</div>
<div class="col-lg-4">
<fieldset>
<input name="email" type="text" id="email" pattern="[^ @]*@[^ @]*" placeholder="YOUR EMAIL..." required="">
<span class="required">*</span>Email Address
<input name="email" type="text" id="email" pattern="[^ @]*@[^ @]*" placeholder="YOUR EMAIL..." required>
</fieldset>
</div>
<div class="col-lg-4">
<fieldset>
<input name="subject" type="text" id="subject" placeholder="SUBJECT...*" required="">
<span class="required">*</span>Subject
<input name="subject" type="text" id="subject" placeholder="SUBJECT..." required>
</fieldset>
</div>
<div class="col-lg-12">
<fieldset>
<textarea name="message" type="text" class="form-control" id="message" placeholder="YOUR MESSAGE..." required=""></textarea>
<fieldset>Message
<textarea name="message" type="text" class="form-control" id="message" placeholder="YOUR MESSAGE..."></textarea>
</fieldset>
</div>
<div class="col-lg-12">
<fieldset>
<button type="submit" id="form-submit" class="button"></button>
<button type="submit" id="form-submit" class="button">Submit</button>
</fieldset>
</div>
</div>
Expand Down Expand Up @@ -958,7 +964,7 @@ <h6>Website URL</h6>
<p>Copyright © 2022 Edu Meeting Co., Ltd. All Rights Reserved.
<br>Design: <a href="https://templatemo.com" target="_parent" title="free css templates">TemplateMo</a></p>
</div>
</section> -->
</section>

<!-- Scripts -->
<!-- <div style="background-image: url('irislogo.png'); background-repeat: no-repeat;background-attachment: fixed; background-position: center;"> -->
Expand Down