-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
154 lines (129 loc) Β· 3.46 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>Portal</title>
<style type="text/css">
body{
/*background-color: #254E6A;*/
background-image: url(img/pic.png);
}
.titile_div{
/*border: 1px solid gold;*/
border-radius: 6px;
background-image: url(img/pic.png);
padding: 8px;
color:#fff;
}
#title_underline{
width: 350px;
}
.signin_div{
margin-left: 300px;
margin-top: 40px;
width:50%;
height: auto;
padding: 10px;
border-radius: 8px;
border: 1px solid gold;
}
input[type=text]{
width: 40%;
padding: 8px 10px;
margin-right: 80px;
margin: 2px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
select{
width: 44%;
padding: 8px 10px;
margin-right: 80px;
margin: 2px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type=password] {
width: 40%;
padding: 8px 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type=submit] {
width: 20%;
background-color: #4CAF50;
color: white;
padding: 10px 20px;
margin: 8px 0;
border: none;
margin-left: 110px;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
.create_account{
margin-top: 10px;
text-decoration: none;
color: gold;
border: 1px solid green;
border-radius: 5px;
padding: 6px;
}
.create_account:hover{
border: 1px solid green;
color: #fff;
}
.hrtitle{
border: 1px solid gold;
padding: 12px;
border-radius: 4px;
color: #fff;
}
</style>
</head>
<body>
<div class="titile_div" align="center">
<h2 class="title_header">WELCOME TO DOCTOR PATIENT PORTAL</h2>
<div id="title_underline">
<hr/>
</div>
</div>
<div align="center" class="signin_div">
<div class="signin">
<form action="index_validation.php" method="post">
<div align="center">
<label style="color: #13E5B8;font-size:20px">SIGN IN YOUR ACCOUNT</label>
</div>
<br/>
<label style="color:#26FC08;margin-left:0px;">LOGIN OPTION</label>
<select id="who_log_in" name="who_log_in">
<option value="Select_option">Select option</option>
<option value="Admin">Admin</option>
<option value="Doctor">Doctor</option>
<option value="Patient">Patient</option>
</select>
<br/><br/>
<label style="color:#fff"> USERNAME </label>
<input type="text" id="username" name="username" placeholder="Username">
<br/><br/>
<label style="color:#fff"> PASSWORD </label>
<input type="password" id="password" name="password" placeholder="Password">
<br/>
<input type="submit" name="Submit" value="Sign in">
</form>
<div>
<br/>
<label style="color:#fff;margin-left:80px;">Create Account </label>
<a class="create_account" href="patient/patient-reg-form.php">Create patient account</a>
<br/><br/>
</div>
</div>
</div>
<br/><br/><br/>
<div align="center">
<label class="hrtitle">©2015-2016 | Doctor Patient Portal | American International University-Bangladesh(AIUB) | All right reserved | Designed By : Faisal Porag</label>
</div>
</body>
</html>