-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.57 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>AutoFill Extension</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="details-section section">
<h2>Fill Your Details</h2>
<input id="name" type="text" placeholder="Full Name">
<input id="age" type="text" placeholder="Age">
<input id="phone" type="text" placeholder="Phone Number">
<input id="personalEmail" type="email" placeholder="Personal Email">
<input id="collegeEmail" type="email" placeholder="College/Work Email">
<input id="cgpa" type="text" placeholder="CGPA">
<input id="branch" type="text" placeholder="Branch">
<input id="collegeName" type="text" placeholder="College Name">
<input id="rollNumber" type="text" placeholder="Roll Number">
<input id="fatherName" type="text" placeholder="Father's Name">
<input id="motherName" type="text" placeholder="Mother's Name">
<input id="percentage10" type="text" placeholder="10th Percentage">
<input id="board10" type="text" placeholder="10th Board">
<input id="percentage12" type="text" placeholder="12th Percentage">
<input id="board12" type="text" placeholder="12th Board">
<input id="schoolName" type="text" placeholder="School Name">
<input id="address" type="text" placeholder="Address">
<input id="city" type="text" placeholder="City">
<input id="pin" type="text" placeholder="PIN Code">
<button id="saveBtn">Save Data</button>
</div>
<div class="footer">
<p>AutoFill Extension © 2024</p>
</div>
<script src="popup.js"></script>
</body>
</html>