-
Notifications
You must be signed in to change notification settings - Fork 39
/
demo.html
28 lines (25 loc) · 850 Bytes
/
demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Contact Form Demo</title>
</head>
<body>
This is a Demo
</body>
<!---
error_text: Message to display if there is an error.
success_text: Message to display if the form is successfully submitted.
disable_waittime: If true, it will not froze a new form subission (after one is successfull) for half a day.
form_worker_url: URL to the cloudflare backend.
-->
<script
src="https://cdn.jsdelivr.net/gh/tuhinpal/contact-form@master/src/contact-form.min.js"
id="contactform"
error_text=""
success_text=""
disable_waittime="true"
form_worker_url="https://contact-form.tprojects.workers.dev/"
></script>
</html>