-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform.html
More file actions
58 lines (42 loc) · 1.43 KB
/
Copy pathform.html
File metadata and controls
58 lines (42 loc) · 1.43 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form method="post">
<label>Username:</label>
<input type="text" placeholder="Tanjumul101" id="username" ><br>
<label>Password: </label>
<input type="password" id="password" placeholder="type password" required minlength="10"><br>
<label> Email: </label>
<input type="email" placeholder="example@email.com" required ></input><br>
<label>Birthday:</label>
<input type="date" required id="birthdate"><br>
<label>Quantity :</label>
<input type="number" value = "1" min="0" max="99"><br>
<label>Mr</label>
<input type="radio" id = "radiobutton" name="title">
<label>Mrs</label>
<input type="radio" id = "radiobutton" name="title">
<label>Phd</label>
<input type="radio" id = "radiobutton" name="title"> <br>
<label>Select Payment:</label>
<select>
<option id="visa">Visa Card</option>
<option id="master">Master Card</option>
<option id="paypal">Paypal Online</option>
</select>
<br><label for = "checked">Subscribr: </label>
<input type="checkbox" id="checked"><br>
<label for = "comment"> Comment Box: </label> <br>
<textarea type="comment" id="comment" rows="3" cols="22"></textarea> <br>
<label for = "file">Attach File</label> <br>
<input type="file">
<br><input type="submit"><br>
<input type="reset">
</form>
</body>
</html>