-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
airdata
committed
May 5, 2018
1 parent
bfc5cd6
commit 8f82ba9
Showing
104 changed files
with
9,212 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
# rumen.pro | ||
# airdata.github.io | ||
Resume of R.L. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<html> | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> | ||
<script type='text/javascript' src="js/validation.js"></script> | ||
<div id='container'> | ||
<form name="contactForm" id='contact_form' method="post" action='email.php'> | ||
<h2>Ajax HTML Contact Form</h2> | ||
<h3>After submission of the form the email will be sent to the email id you entered.</h3> | ||
<p> Your Name: | ||
<div id='name_error' class='error'><img src='images/error.png'>Please enter your name.</div> | ||
<div> | ||
<input type='text' name='name' id='name'> | ||
</div> | ||
</p> | ||
<p> Your E-mail ID: | ||
<div id='email_error' class='error'><img src='images/error.png'>Please enter your valid E-mail ID.</div> | ||
<div> | ||
<input type='text' name='email' id='email'> | ||
<div> | ||
</p> | ||
<p> Email Subject: | ||
<div id='subject_error' class='error'><img src='images/error.png'>Please enter the subject.</div> | ||
<div> | ||
<input type='text' name='subject' id='subject'> | ||
</div> | ||
</p> | ||
<p> Your Message: | ||
<div id='message_error' class='error'><img src='images/error.png'>Please enter your message.</div> | ||
<div> | ||
<textarea name='message' id='message'></textarea> | ||
</div> | ||
</p> | ||
<div id='mail_success' class='success'><img src='images/success.png'>Your message has been sent successfully.</div> | ||
<div id='mail_fail' class='error'><img src='images/error.png'> Sorry, error occured this time sending your message.</div> | ||
<p id='submit'> | ||
<input type='submit' id='send_message' value='Submit Form'> | ||
</p> | ||
</form> | ||
<footer>This demo form is the reference to the article <a href="http://bit.ly/122DCsw" title="How to create a simple HTML contact form with Ajax & PHP" target="_blank">http://bit.ly/122DCsw</a> </footer> | ||
</div> | ||
</html> |
Oops, something went wrong.