-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAssignment1.html
More file actions
97 lines (95 loc) · 3.22 KB
/
Assignment1.html
File metadata and controls
97 lines (95 loc) · 3.22 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="stylesheet.css">
<title>Re-Evalution Request</title>
</head>
<body>
<div align="center"><img src="logoPesu.png" alt="PESU Logo" id="logo" width="200" align="center"> <!-- PESU Logo at top center --></div>
<h2>Re-evaluation Request Form</h2>
<div id="fullform">
<table class=tab style="font-size:25px" border="" align="center">
<form method="post" action="" target="_blank">
<tr width="100">
<td>
Name:
</td>
<td>
<input class="textbox" type="text" name="f_name" placeholder="Enter your name" required="required">
</td>
</tr>
<tr>
<td>
SRN:
</td>
<td>
<input class="textbox" type="text" name="srn" placeholder="Enter your SRN" required="required">
</td>
</tr>
<tr>
<td>
Gender:
</td>
<td>
<input type="radio" name="g1" value="male">Male
<input type="radio" name="g1" value="female">Female
</td>
</tr>
<tr>
<td>
Email:
</td>
<td>
<input class="textbox" type="email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,4}$" placeholder="Enter your mail ID" required="required">
</td>
</tr>
<tr>
<td>
Phone No.:
</td>
<td>
<input class="textbox" type="tel" pattern="[6-9]{1}[0-9]{9}" placeholder="Enter your mobile no."required="required">
</td>
</tr>
<tr>
<td>
Date Of Request:
</td>
<td>
<input type="date" required="required">
</td>
</tr>
<tr>
<td>
Subject:
</td>
<td>
<select name="subject" id="subject0" placeholder="Select your subject">
<option value="">Select an option</option>
<option value="wt">Web Technology</option>
<option value="sds">Statistics in Data Science</option>
<option value="dsa">Data structure and its application</option>
<option value="ddco">Digital Design and Computer organisation </option>
<option value="afll">Automata Formal language and logic</option>
</select>
</td>
</tr>
<tr>
<td colspan="2"><input type="checkbox" required="required">I hereby confirm my details</td>
</tr>
<tr>
<td>
<button type="submit" ondblclick="f1()">Submit</button></td>
<td><button type="reset">reset</button></td>
</tr>
</form>
</table>
</div>
<script type="text/javascript">
function f1() {
alert("Successfully submitted");}
</script>
</body>
</html>