-
Notifications
You must be signed in to change notification settings - Fork 1
/
page_2.html
43 lines (36 loc) · 1.32 KB
/
page_2.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
<!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="body_2.css">
<title>Create Your Account</title>
</head>
<body>
<div class="container">
<h1>Create Your Account</h1>
<div class="input-box" id="adharBox">
<label for="adharNumber">Adhar Number:</label>
<input type="text" id="adharNumber">
<input type="file" id="adharImage" style="display: none;">
<button onclick="uploadImage('adharImage')">Upload Image</button>
</div>
<div class="input-box" id="panCardBox">
<label for="panCardID">Pan Card ID:</label>
<input type="text" id="panCardID">
<input type="file" id="panCardImage" style="display: none;">
<button onclick="uploadImage('panCardImage')">Upload Image</button>
</div>
<div class="input-box" id="voterIDBox">
<label for="voterID">Voter ID:</label>
<input type="text" id="voterID">
<input type="file" id="voterIDImage" style="display: none;">
<button onclick="uploadImage('voterIDImage')">Upload Image</button>
</div>
<div class="signup-box">
<button class="signup-button">Sign Up</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>