-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-full-review.php
63 lines (54 loc) · 1.91 KB
/
add-full-review.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
<?php include("include/page-head.php"); ?>
<body class="add-full-review">
<div class="site-container">
<?php include("include/site-header.php"); ?>
<div class="add-full-reivew-wrap">
<div class="container narrow">
<h2>Review an Employer</h2>
<form class="form-add-review-salary">
<fieldset class="site-search">
<label>Company Name</label>
<p><input type="text" /></p>
<div class="nav-search-results search-results-wide">
<ul class="landing-search-results">
<li>
<a href="/">
<span>Swift Transportation</span>
<small class="landing-search-count">17,961 Trucks</small>
</a>
</li>
<li>
<a href="/">
<span>Kenan Advantage Group (KAG)</span>
<small class="landing-search-count">17,961 Trucks</small>
</a>
</li>
<li>
<a href="/">
<span>Con-way</span>
<small class="landing-search-count">17,961 Trucks</small>
</a>
</li>
<li>
<a href="/">
<span>CR England</span>
<small class="landing-search-count">17,961 Trucks</small>
</a>
</li>
</ul>
</div>
</fieldset>
<?php include("include/add-review.php"); ?>
<fieldset class="form-actions">
<button type="submit">Next</button>
</fieldset>
<?php include("include/add-salary.php"); ?>
<fieldset class="form-actions">
<button type="submit">Submit</button>
</fieldset>
</form>
</div>
</div>
<?php include("include/site-footer.php"); ?>
</div>
</body>