forked from AtitBimali/web-tech-labs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab_assignment_10form.html
51 lines (36 loc) · 1.2 KB
/
lab_assignment_10form.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Submission</title>
</head>
<body>
<h2>Student Form Submission</h2>
<form action="lab_assignment_10formsubmit.php" method="post" target="_blank">
<label for="fullName">Full Name:</label>
<input type="text" id="fullName" name="fullName" required>
<br><br>
<label for="course">Course:</label>
<select id="course" name="course" required>
<option value="CSIT">B.sc.csit</option>
<option value="BCA">BCA</option>
<option value="BBM">BBM</option>
<option value="BBA">BBA</option>
<option value="BIM">BIM</option>
<option value="Other">Other</option>
</select>
<br><br>
<label for="semester">Semester (first,second,..):</label>
<input type="text" id="semester" name="semester" required>
<br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<br><br>
<label for="phoneNo">Phone Number:</label>
<input type="tel" id="phoneNo" name="phoneNo" required>
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>