-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (86 loc) · 2.37 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
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
<html>
<head>
<title>
ID management system
</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<style type="text/css">
form{
margin:10px;
}
.large-header {
position: relative;
width: 100%;
background: #111;
overflow: hidden;
background-size: cover;
background-position: center;
z-index: 1;
}
.demo .large-header {
background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/499416/demo-bg.jpg");
}
.main-title {
position: absolute;
margin: 0;
padding: 0;
color: #F9F1E9;
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
}
.demo .main-title {
text-transform: uppercase;
font-size: 16px;
font-family: monospace;
}
.button {
background-color: #f6f6f8;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
.button:hover {
background-color:#4CAF50; /* Green */
color: white;
color: black;
}
footer {
padding: 1em;
color: white;
background-color: black;
clear: left;
text-align: center;
position: fixed;
bottom: 0%;
width: 100%;
}
</style>
</head>
<body>
<div class="demo">
<div class="content">
<div id="large-header" class="large-header">
<canvas id="demo-canvas"></canvas>
<h1 class="main-title" >Person Identification Details</h1>
</div>
</div>
</div>
<div style="display: inline-flex;">
<img src="1.jpg" width="30%"></img>
<div style="margin-left: 50px;margin-top: 50px;">
<form action="form1.php" method="post">
<label>Aadhar Number:</label> <input class="form-control" style="width:50%;display: inline;" type="text" name="adr"><br><br />
<input align="center" class="form-control button" style="width:30%;" type="submit" value="Submit">
</form>
<br /><br />
<form action="form2.php" method="post">
<label> Query Entry:</label><br> <textarea class="form-control" rows="5" cols="80" style="width:100%" name="qry"></textarea></br>
<input class="form-control button" style="width:50%;" type="submit" value="Submit Query">
</form>
</div>
<img src="2.jpg" width="30%" style="margin-right: 80px;"></img>
</div>
<footer>Copyright © DataWorld.com</footer>
</body>
</html>