-
Notifications
You must be signed in to change notification settings - Fork 1
/
as_patient.html
56 lines (52 loc) · 994 Bytes
/
as_patient.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
<!DOCTYPE html>
<html>
<head>
<style>
body {
background: linear-gradient(to left, rgba(204,255,255,0.3), rgba(150,153,255,0.7));
}
label{
float: center;
width:200px;
display:inline-block;
text-align:right;
clear:center;
font-size:28px;
}
input[type=submit]{
width: 180px; height: 40px;
font-size: 30px;
opacity: 0.8;
}
::-webkit-input-placeholder {
font-size: 20px;
}
input {
display:inline-block;
width:350px;
height:50px;
font-size: 28px;
float:center;
border-radius: 10px;
padding: 2px;
opacity: 0.5;
}
</style>
</head>
<body>
<br><br><br><br><br><br>
<form>
<div>
<center>
<label>USER ID:</label>
<input type="text" class="iop" name="firstname" placeholder=" Enter AADHAR NUMBER">
<br><br>
<label>PASSWORD:</label>
<input type="password" class="iop" name="lastname" placeholder=" Enter Password">
<br><br>
<input type="submit" id="uni" value="SUBMIT">
</center>
</div>
</form>
</body>
</html>