-
Notifications
You must be signed in to change notification settings - Fork 0
/
current.html
79 lines (65 loc) · 2.85 KB
/
current.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
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
<!DOCTYPE html>
<html>
<head>
<title>Registration</title>
<link rel="stylesheet" type="text/css" href="current.css">
</head>
<body>
<h1>Fill up the form :</h1><br>
<form action="upload_file.html" method="post">
<input type="file" name="file" id="file"><br>
<form class="myForm" method="get" enctype="application/x-www-form-urlencoded" action="/html/codes/html_form_handler.cfm"></form><br>
<label id="name"> Name :</label><br>
<input type="text" id="info" required placeholder="Enter your Name"> <br>
<label id="dob">Date Of Birth :</label><br>
<input type="date" id="db " required><br>
<label id="gender"> Gender :</label><br> 
<input type="radio" name="gender" value="male"> Male  
<input type="radio" name="gender" value="female"> Female  
<input type="radio" name="gender" value="other"> Other
<br>
<br>
<label id="phone">Phone number :</label><br>
<input type="number" id="phonenumber" placeholder="Enter your Phone Number."><br>
<label id="peradd">Permanent Address :</label><br>
<input type="text3" id="address1" placeholder="Enter your Permanent Address."> <br>
<label id="temadd">Temporary Address :</label><br>
<input type="text3" id="address2" placeholder="Enter your Temporary Address."> <br>
<label id="email">Email Id :</label><br>
<input type="email" id="emailaddress" placeholder="Enter your Email."> <br>
<label id="blood">Blood Group :</label><br>
<input type="radio" name="bloodgroup" value="A +ve"> A +ve  
<input type="radio" name="bloodgroup" value="A -ve"> A -ve  
<input type="radio" name="bloodgroup" value="B +ve"> B +ve  
<input type="radio" name="bloodgroup" value="B -ve"> B -ve  
<input type="radio" name="bloodgroup" value="AB +ve"> AB +ve  
<input type="radio" name="bloodgroup" value="AB -ve"> AB -ve  
<input type="radio" name="bloodgroup" value="O +ve"> O +ve  
<input type="radio" name="bloodgroup" value="O -ve"> O -ve  
<br>
<br>
<button id="submit">Submit</button>
</form>
<script src="https://www.gstatic.com/firebasejs/7.7.0/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.7.0/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyAn-UCPutjm9yRf90ajTRADeLh73wDx3xM",
authDomain: "digital-id-eafe2.firebaseapp.com",
databaseURL: "https://digital-id-eafe2.firebaseio.com",
projectId: "digital-id-eafe2",
storageBucket: "digital-id-eafe2.appspot.com",
messagingSenderId: "1063676812163",
appId: "1:1063676812163:web:ffb643c0b5b565f4c8b4b6",
measurementId: "G-HQKW9VJFZR"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
<script src="firebase.js"></script>
</body>
</html>