-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjobStatus.html
136 lines (117 loc) · 4.52 KB
/
jobStatus.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
<!DOCTYPE html>
<html>
<head>
<title>job status</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" type="text/css" href="../web-project/style.css">
<link rel="stylesheet" type="text/css" href="../web-project/booking.css">
</head>
<body class="background" style="text-align:center">
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<b> <img src="../web-project/cloud.png" width="50" height="50" style="margin-left:-300px">babyhood<b>
<div class="w3-right w3-hide-small">
<a href="../web-project/babySitterHomePage.html" class="w3-bar-item w3-button">Home</a>
<a href="../web-project/requestList.html" class="w3-bar-item w3-button">requests list</a>
<a href="../web-project/offerStatus.html" class="w3-bar-item w3-button">My offers</a>
<a href="../web-project/jobStatus.html" class="w3-bar-item w3-button">My reviews & rate</a>
<a href="../web-project/Sprofile.html" class="w3-bar-item w3-button"><img src="../web-project/user.png" width="50" height="50"></a>
</div>
</div>
</div>
<br><br><br><br><br>
<br>
<div class="signUp">
<h3 style="font-size:30px ;color:rgb(2, 9, 9); ">current job :</h3>
<p>Click on the parent's name to see the details </p>
<p style="font-size:25px ;color:rgb(6, 17, 71); ">
<table border= 3px class="tableBooking">
<tbody>
<tr>
<th>Date</th>
<th>number of hour</th>
<th>name of parent</th>
<th>price per hour</th>
<th>StartTime</th>
<th>EndTime</th>
</tr>
<tr>
<td></td>
<td>3 hours</td>
<td><a href="../web-project/parentDetails.html">Sami</a></td>
<td>50 SR</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>5 hours</td>
<td><a href="../web-project/parentDetails.html">Sara</a></td>
<td>70 SR</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<br>
<div class="signUp">
<h3 style="font-size:30px ;color:rgb(2, 9, 9); " >previous job :</h3>
<table border= 3px class="tableBooking">
<tbody>
<tr>
<th>Date</th>
<th>number of hour</th>
<th>name of parent</th>
<th>price per hour</th>
</tr>
<tr>
<td>2022</td>
<td>3 hours</td>
<td>Sami</td>
<td>50 SR</td>
</tr>
<tr>
<td>2022</td>
<td>5 hours</td>
<td>Sara</td>
<td>70 SR</td>
</tr>
<tr>
<td>2021</td>
<td>2.5 hours</td>
<td>Sami</td>
<td>56 SR</td>
</tr>
<tr>
<td>2021</td>
<td>4 hour</td>
<td>Bushra</td>
<td>80 SR</td>
</tr>
<tr>
<td>2021</td>
<td>3 hours</td>
<td>Sami</td>
<td>40 SR</td>
</tr>
<tr>
<td>2021</td>
<td>3 hours</td>
<td>Fatima</td>
<td>50 SR</td>
</tr>
</tbody>
</table>
</div>
</body>
<br><br><br>
<footer class="footer">
<br>
<a href="https://www.facebook.com/" ><img src="../web-project/facebook.png" width="18" height="18"></a>
<a href="https://twitter.com/"><img src="../web-project/twitter.png" width="18" height="18"></a>
<a href="https://www.instagram.com/"><img src="../web-project/instagram.png"width="18" height="18"></a>
<p> babyhood © <a href="#" >www.babyhood.com</a></p>
</footer>
</html>