-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform1.php
More file actions
41 lines (40 loc) · 1.42 KB
/
form1.php
File metadata and controls
41 lines (40 loc) · 1.42 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
<!doctype html>
<html>
<head>
<title>web1</title>
</head>
<body>
<form action="fact.php" method="post" enctype="multipart/form-data">
<!-- NAME:<input type="text" name="name">
<br>
E-MAIL:<input type="email" name="email">
<br>
PASSWORD:<input type="password" name="pass"> -->
<br>
PROFILE:<input type="file" name="profile">
<!-- Ph. NO.:<input type="number" name="name">
<br>
GENDER:
MALE:<input type="radio" name="gender" value="male">
FEMALE:<input type="radio" name="gender" value="female">
OTHER:<input type="radio" name="gender" value="other">
<br>
DEPERTMENT:
<select name="dept">
<option value="CST">CST</option>
<option value="ECE">ECE</option>
<option value="EE">EE</option>
</select>
<br>
HOBBY:
CRICKET:<input type="checkbox" name="hobby[]" value="CRICKET">
DRAWING:<input type="checkbox" name="hobby[]" value="DRAWING">
STORY BOOK:<input type="checkbox" name="hobby[]" value=" STORY BOOK">
<br>
BIO:
<textarea name="bio"></textarea> -->
<br><input type="submit" name="submit" >
</form>
<a href="login.php">LOGIN</a>
</body>
</html>