forked from cleverbot026/activity_forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
74 lines (29 loc) · 1.09 KB
/
form.html
File metadata and controls
74 lines (29 loc) · 1.09 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
<link rel="stylesheet" href="form.css">
</head>
<body>
<section class="form">
<div class="form-title">
<h2>Contact Us</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
</div>
<div class="form-body">
<form name="contactForm" action="#" method="get"> <!-- get - post -->
<!-- <label for="txtName">Username</label> -->
<input type="text" name="txtName" placeholder="Username" required> <input type="email" name="txtEmail" placeholder="Email (Optional)"> <input type="password" name="txtPass" placeholder="Password" required>
</select>
<input type="checkbox" name="chkAgree" value="Agree"> <label for="chkAgree">I agree to the terms and conditions.</label>
<div class="btns">
<input type="submit" value="Submit" name="btnSubmit">
<input type="reset" value="Clear" name="btnClear">
</div>
</form>
</div>
</section>
</body>
</html>
</body>