-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactForm.html
27 lines (26 loc) · 1.08 KB
/
contactForm.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Form</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="contact.js"></script>
</head>
<body>
<div class="container">
<form onsubmit="sendEmail(); reset(); return false;">
<h3>LET'S CONNECT!</h3>
<input type="text" id="name" placeholder="Your Name" required>
<input type="email" id="email" placeholder="Email Id" required>
<input type="text" id="phone" placeholder="Phone Number" required>
<textarea id="message" rows="5" placeholder="How can we help you?"></textarea>
<button type="submit">Send</button>
</form>
</div>
<script src="https://smtpjs.com/v3/smtp.js"></script>
</body>
</html>
<!-- credentials to use without using "SecureToken" in line 26 -->
<!-- SecureToken: "6dac03ab-0b3e-45de-8f7e-92d71531f27c", -->