-
Notifications
You must be signed in to change notification settings - Fork 0
/
hospital-signup.html
153 lines (142 loc) · 3.63 KB
/
hospital-signup.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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<h1 class="head">Register your Hospital</h1>
<meta charset="utf-8">
<style>
body{ background: #000000;
background: -webkit-linear-gradient(to right, #F5F7FA,#B8C6DB);
background: linear-gradient(to right, #F5F7FA,#B8C6DB);
font-family: calibri;
}
.head{
font-family: cursive;
font-style: oblique;
text-align: left;
color: black
;
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: white;
border-radius: 25px;
background-color:black;
width: 100px;
height: 30px;
position: relative;
left: 38%;
}
.box{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 380px;
padding: 20px;
background: linear-gradient(to right,#03C8A8,#89D8D3);
border: 1px solid black;
border-radius: 25px;
}
.insidebox{
text-align: center;
color: white;
}
</style>
<title>Hospital</title>
</head>
<body>
<h1 class='heading'> <b></b></h1>
<br> <br> <br> <br>
<div class="box">
<div class="insidebox">
<form action="hospital-signup.php" method="POST">
<h2> <b> SIGN UP </b></h2>
Hospital ID: <br>
<input type="text" class="textbox" name="HospitalId" placeholder="Hospital Id"> <br> <br>
Hospital Name: <br>
<input type="text" class="textbox" name="HospitalName" placeholder="Hospital name"> <br> <br>
Hospital address:
<input type="text" class="textbox" name="HospitalAddress" placeholder="Hospital address"> <br> <br>
Phone number: <br>
<select class="textbox">
<option> +91 </option>
</select>
<input type="phone" class="textbox" name="MobileNo" maxlength="10">
<br> <br>
<button type="submit" name="hospital-signup" class="button" >
Register
</button>
</form>
</div>
</div>
<div class="toprightbox1">
<a href="index.php">HOME</a>
</div>
<div class="topleftbox1">
<a href="login-hospital.html">LOG-IN</a>
</div>
</body>
</html>