22< html >
33< head >
44 < title > Edit Appointment</ title >
5- < link rel ="stylesheet " type =" text/css " href ="../../css/appointmentindex .css ">
5+ < link rel ="stylesheet " href ="../../css/edit .css ">
66</ head >
7+ < style >
8+ body {
9+ font-family : Arial, sans-serif;
10+ background-color : # f2f2f2 ;
11+ }
12+ nav ul {
13+ list-style : none;
14+ display : flex;
15+ justify-content : space-between;
16+ background-color : # 56bb8a ;
17+ padding : 10px ;
18+ }
19+ nav li {
20+ margin-right : 20px ;
21+ }
22+ nav a {
23+ text-decoration : none;
24+ color : # fff ;
25+ font-weight : bold;
26+ transition : color 0.3s ;
27+ }
28+ nav a : hover {
29+ color : # 56bb8a ;
30+ }
31+
32+ </ style >
733< body >
834 < header >
935 < nav >
1036 < ul >
11- < li > < a href ="index.html "> Home</ a > </ li >
12- < li > < a href ="Views/Doctor/docindex.html "> Doctors</ a > </ li >
13- < li > < a href ="/about "> About</ a > </ li >
14- < li > < a href ="Views/Account/Login.html " class ="btn btn-login "> Login</ a > </ li >
15- < li > < a href ="Views/Account/Register.html " class ="btn btn-register "> Register</ a > </ li >
37+ < li > < a href ="../../index.html "> Home</ a > </ li >
38+ < li > < a href ="../../Views/Doctor/DocIndex.html "> Doctors</ a > </ li >
39+ < li > < a href ="../../Views/Appointment/Details.html "> My Appointments</ a > </ li >
40+ < li > < a href ="# "> About Us</ a > </ li >
41+ < li > < a href ="# "> Contact Us</ a > </ li >
42+ < li > < a href ="../../index.html "> Log out</ a > </ li >
1643 </ ul >
1744 </ nav >
18- < br > < br >
1945 </ header >
2046< div class ="row ">
2147 < div class ="col-md-12 ">
2248 < h1 > Edit your appointment</ h1 >
2349 < form >
50+ < label for ="patient name "> Patient Name</ label >
51+ < input type ="text " placeholder ="Patient Name* " required >
52+ < label for ="email "> Email ID</ label >
53+ < input type ="email " placeholder ="Email Address* " required >
54+ < label for ="department "> Department</ label >
55+ < select id ="DeptID " name ="DepartmentName ">
56+ < option > Select Department</ option >
57+ < option > Cardiology</ option >
58+ < option > Dermatology</ option >
59+ < option > Neurology</ option >
60+ <!-- More department options -->
61+ </ select >
2462 < label for ="doctor "> Doctor</ label >
2563 < select id ="DoctorID " name ="DoctorID ">
2664 < option value =""> --Select Doctor--</ option >
@@ -31,10 +69,10 @@ <h1>Edit your appointment</h1>
3169 < option value ="5 "> Dr.Maria</ option >
3270 < option value ="6 "> Dr.Shelly</ option >
3371 </ select >
34-
72+
3573 < label for ="date "> Date</ label >
3674 < input type ="date " id ="date " name ="date ">
37-
75+
3876 < label for ="time "> Time</ label >
3977 < select id ="Time " name ="Time " class ="form-control ">
4078 < option value ="8am "> 8:00 AM to 8:30 AM</ option >
@@ -43,28 +81,7 @@ <h1>Edit your appointment</h1>
4381 < option value ="11am "> 11:00 AM to 11:30 AM</ option >
4482 < option value ="12pm "> 12:00 PM to 12:30 PM</ option >
4583 </ select >
46-
84+
4785 < button type ="submit "> Save</ button >
4886 </ form >
49- </ div >
50- </ div >
51- < br > < br > < br > < br > < br >
52- </ body >
53- < footer >
54- < div class ="footer-container ">
55- < div class ="footer-section ">
56- < h4 > Contact Us</ h4 >
57- < p > Email: support@docappointments.com</ p >
58- < p > Phone: +1 234 567 8900</ p >
59- < p > Address: 123 Health St, Wellness City</ p >
60- </ div >
61- < div class ="footer-section ">
62- < h4 > Follow Us</ h4 >
63- < div class ="social-links ">
64- < p > < a href ="https://facebook.com "> Facebook</ a > </ pr >
65- < p > < a href ="https://twitter.com "> Twitter</ a > </ p >
66- < p > < a href ="https://instagram.com "> Instagram</ a > </ p >
67- </ div >
68- </ div >
69- </ div >
70- </ footer >
87+ </ div >
0 commit comments