-
Notifications
You must be signed in to change notification settings - Fork 0
/
link.html
33 lines (24 loc) · 935 Bytes
/
link.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body>
<!-- <form action="https://fabform.io/f/4chLVUT" method="post">
<label for="pasteCode">Full Code</label>
<textarea name="pasteCode" type="text" required></textarea>
<label for="date">Date</label>
<input name="date" type="date" required>
<button type="submit">Send</button>
</form> -->
<form action="https://fabform.io/f/4chLVUT" method="post" id="email_form">
<label for="pasteCode">Date</label>
<input type="date" name="date" placeholder="Date" />
<label for="pasteCode">Full Code</label>
<textarea name="text" placeholder="Code" rows="40" cols="100"></textarea>
<button id="submit_form" type="submit" value="Send" class="btn-1">Submit</button>
</form>
</body>
</html>