-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
40 lines (35 loc) · 1.14 KB
/
test.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
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>Contact Form</title>
<script type="text/javascript" src="https://cdn.emailjs.com/sdk/2.3.2/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init("user_dMvWvYnBOdwh0d5MzBC9H");
})();
</script>
<script type="text/javascript">
window.onload = function () {
document.getElementById('contact-form').addEventListener('submit', function (event) {
event.preventDefault();
this.contact_number.value = Math.random() * 100000 | 0;
emailjs.sendForm('beautiful_vietnam', 'template_Z4mRVQeo', this);
});
}
</script>
</head>
<body>
<form id="contact-form" method="POST"
action="https://script.google.com/macros/s/AKfycbzyKf6-trgBE3jQBXeJQ2waZBZIKrKNjcEyO0qu/exec"
data-email="[email protected]">
<input type="hidden" name="contact_number">
<label>Name</label>
<input type="text" name="user_name">
<label>Email</label>
<input type="email" name="user_email">
<label>Message g</label>
<textarea name="contact"></textarea>
<input type="submit" value="Send">
</form>
</body>
</html>