forked from sarahdoi/Oun-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbsreview.php
103 lines (72 loc) · 2.83 KB
/
bsreview.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
<?php
session_start();
if(!isset($_SESSION['email']))
header("Location: index.php?error=Please Sign In again!");
else
{
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="images/logo.png" >
<link rel="stylesheet" href="styleB.css">
<!--import google fonts & stars-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- <link rel="stylesheet" href="style.css" >-->
<link rel="stylesheet" href="bsreview.css" >
<title> Review Babysitter </title>
</head>
<body>
<header style="z-index:2000">
<a href="#" class="logo"><img src="images/logo.png" alt="logo icon"></a>
<nav class="navbar">
<ul>
<li> <a onclick="window.history.back()" style="pointer:cursor;"> < Back </a> </li>
<li><a href="mprofile.php"> Home </a></li>
<li> <a href="#"> Menu </a>
<ul class="inner"> <!-- your menu here\\\\\\-->
<li class="first"><a href="parentrequests.php"> My Pending Requests </a></li>
<li><a href="viewOffers.php"> Babysitter Offers </a></li></ul>
<li> <a href="#"> Settings </a>
<ul class="inner">
<li class="first"><a href="parentprofile.php"> view profile</a></li>
<li><a href="index.php"> Sign out </a></li>
</ul>
</li>
</ul>
</nav>
</header>
<!--review and rate card-->
<form action="rate.php?booking_id=<?php echo $_GET['booking_id']; ?>" method="post">
<div class="container" >
<div class="star-widget">
<input type="radio" name="rate" id="rate-5" value="5">
<label for="rate-5" class="fa fa-star checked"></label>
<input type="radio" name="rate" id="rate-4" value="4">
<label for="rate-4" class="fa fa-star checked"></label>
<input type="radio" name="rate" id="rate-3" value="3">
<label for="rate-3" class="fa fa-star"></label>
<input type="radio" name="rate" id="rate-2" value="2">
<label for="rate-2" class="fa fa-star"></label>
<input type="radio" name="rate" id="rate-1" value="1">
<label for="rate-1" class="fa fa-star"></label>
<header> </header>
<div class="textarea">
<textarea name="review" style="font-size:medium;" cols="30" placeholder="Describe your experiance.."></textarea>
</div>
<!-- Check view profile baby sitter -->
<!-- <a href="rate.php?booking_id=<?php// echo$_GET['booking_id']; ?>"> -->
<div class="btn">
<button type="submit"> Post</button>
</div>
</a>
</div>
</div>
</form>
</body>
</html>
<?php
}
?>