-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.93 KB
/
index.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
<!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>Feedback form emailjs</title>
<link rel="stylesheet" href="index/style.css">
</head>
<body>
<!-- Feedback form -->
<div class="background_form">
<form id="form">
<input name="from_name" class="input_form_block" placeholder="Your name" id="from_name" id="textInput"/><!-- Name form -->
<input name="email_id" class="input_form_block" placeholder="example@mail.com" id="email_id" id="textInput"/><!-- Email form -->
<input type="text" name="tel_number" class="input_form_phone" placeholder="+1 (___) ___-__-__" id="tel_number" id="textInput"/><!-- Number phone form -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery.maskedinput@1.4.1/src/jquery.maskedinput.js" type="text/javascript"></script>
<div class="isNotAlert" id="alert">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
Incorrect entry of Name, Email or Phone Number.
</div>
<div class="confidentiality">I confirm that I have read the <a href="documents/privacy-policy.txt">privacy policy</a> and agree to the processing of my personal data</div>
<button class="button" id="send-button" type="submit">Send</button>
</form>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<script type="text/javascript">emailjs.init('qiQxPKTiYT5LSz2z8')</script> <!-- This code is taken from (Account -> Public Key) -->
</div>
<script src="index/script.js"></script>
</body>
</html>