-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (28 loc) · 1 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
32
33
34
35
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>contact form</title>
</head>
<body>
<form action="https://kfjbe9.deta.dev/form" method="post">
<input id="csrf_token" name="csrf_token" type="hidden"
value="ImU2NzU0OTkwNmQ4OTNlYThkZDdkNDZmMWNhN2JiZGEwNGU4YjIyMjUi.YHXpIA.111xqgFXKgymdQY4bLK_BB4z0Lc">
<p>
<label for="name">Your Name:</label>
<input id="name" name="name" required type="text" value="">
</p>
<p>
<label for="email">Your e-mail address:</label>
<input id="email" name="email" required type="text" value="">
</p>
<p>
<label for="message">Your message:</label>
<textarea id="message" name="message" required></textarea>
</p>
<p>
<input id="submit" name="submit" type="submit" value="Send Message">
</p>
</form>
</body>
</html>