-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest forms.html
More file actions
58 lines (50 loc) · 1.52 KB
/
test forms.html
File metadata and controls
58 lines (50 loc) · 1.52 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Test Forms</title>
</head>
<body>
<main>
<!-- <form method="POST" action="https://request-inspector.glitch.me/">-->
<!-- <label for="username">Username</label>-->
<!-- <input-->
<!-- id="username"-->
<!-- name="username"-->
<!-- type="text"-->
<!-- placeholder="Enter username"-->
<!-- value="">-->
<!-- <br>-->
<!-- <label for="age">User age</label>-->
<!-- <input id="age" type="number" name="age" placeholder="Enter user age">-->
<!-- <br>-->
<!-- <button>Submit</button>-->
<!-- </form>-->
<form method="post" action="https//request-inspector.glitch.me/">
Your Name * <br>
<label for="firstName"></label>
<input id="firstName" name="firstname" type="text">
<label for="lastname"></label>
<input id="lastname" name="lastname" type="text">
<br>
first name
last name
<br>
<br>
Business Name *
<br>
<label for="business name"></label>
<input id="business name" name="business name" type="text" required>
<br>
<br>
E-mail *
<br>
<label for="E-mail"></label>
<input id="E-mail" name="E-mail" type="text" required>
<div>
<button>Submit</button>
</div>
</form>
</main>
</body>
</html>