-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprac.html
More file actions
161 lines (151 loc) · 4.05 KB
/
Copy pathprac.html
File metadata and controls
161 lines (151 loc) · 4.05 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<h1 class="head">Pharmaceutical Management System</h1>
<meta charset="utf-8">
<style>
body{ background: #000000;
background: -webkit-linear-gradient(to right, #434343, #000000);
background: linear-gradient(to right, #434343, #000000);
font-family: calibri;
}
.head{
font-family: cursive;
font-style: oblique;
text-align: left;
color: white;
text-shadow: 2px 1px #403a3a;
}
.textbox {
color:white;
height: 25px;
width: 100px;
border-radius: 25px;
border-bottom-color: rgb(39, 41, 37);
background-color: rgba(0, 0, 0, 0.5);
}
.textbox1{
color: white;
height: 25px;
width: 200px;
border-radius: 25px;
border-bottom-color: rgb(39, 41, 37);
background-color: rgba(0, 0, 0, 0.5);
}
.textbox:focus {
border: 0.5px solid black;
outline: none;
}
.topleftbox1{
display: inline-block;
position: absolute;
top:5%;
left: 80%;
padding: 10px 20px 10px 20px;
border-radius: 25px;
background-color: rgba(0,0,0,0.50);
font-size: 20px;
font-family: serif;
border:1px solid black;
font-weight: bold;
text-align: center;
}
#image1{
height:60px;
width:70px;
position: absolute;
top:-3%;
left:40%;
}
.toprightbox1{
display: inline-block;
position: absolute;
border-radius: 25px;
top:5%;
left: 90%;
padding: 10px 20px 10px 20px;
background-color: rgba(0,0,0,0.50);
font-size: 20px;
font-family: serif;
border:1px solid black;
font-weight: bold;
text-align: center;
}
a{
text-decoration: none;
color:white;
}
a:hover{
color: red;
text-decoration: underline;
}
.button{
color: black;
border-radius: 25px;
background-color:white;
}
.box{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 380px;
padding: 20px;
background: rgba(0, 0, 0,.5);
border: 1px solid black;
border-radius: 25px;
}
.insidebox{
text-align: center;
color: white;
}
</style>
<title>Pharmaceutical Management System</title>
</head>
<body>
<h1 class='heading'> <b></b></h1>
<br> <br> <br> <br>
<div class="box">
<div class="insidebox">
<form action="" method="POST">
<img id="image1"
src="C:\Users\hp\Desktop\Collage\Practise\images\service1.png">
<h2> <b> SIGN UP </b></h2>
Patient ID: <br>
<input type="text" class="textbox" name="Patientid" placeholder="Patientid"> <br> <br>
Full name:<br>
<input type="text" class="textbox" name="fname" placeholder="first name">
<input type="text" class="textbox" name="lname" placeholder="last name">
<br><br>
Email:<br>
<input type="email" class="textbox1" name="Email" placeholder="Enter your email">
<br><br>
Age:
<input type="number" class="textbox" name="age" placeholder="current age">
<br> <br>
Phone number: <br>
<select class="textbox">
<option> +91 </option>
</select>
<input type="phone" class="textbox" name="MobileNo" maxlength="10">
<br> <br>
Gender:
<input type="radio" name="gender" value="Male">Male
<input type="radio" name="gender" value="Female">Female
<br> <br>
Hospital name:
<input type="text" class="textbox" name="hospitalname" placeholder="H name"> <br> <br>
Hospital id:
<input type="text" class="textbox" name="hospitalid" placeholder="H id">
<br> <br>
<button type="submit" class="button" >SIGN IN</button>
</form>
</div>
</div>
<div class="toprightbox1">
<a href="C:\Users\hp\Desktop\Collage\Practise\main.html">HOME</a>
</div>
<div class="topleftbox1">
<a href="C:\Users\hp\Desktop\Collage\Practise\loginC.html">LOG-IN</a>
</div>
</html>