-
Notifications
You must be signed in to change notification settings - Fork 0
/
gifts.php
132 lines (127 loc) · 4.17 KB
/
gifts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="https://kit.fontawesome.com/7d66a8729a.js" crossorigin="anonymous"></script>
<title>careers</title>
</head>
<body>
<nav>
<ul>
<li class="nav-links"><a href="index.php">Home</a></li>
<li class="nav-links"><a href="menu.php">Fabrics</a></li>
<li class="nav-links"><a href="about.php">About</a></li>
<li class="nav-links"><a href="contact.php">Contact</a></li>
<li class="nav-links"><a href="gifts.php">Career</a></li>
</ul>
<img src="assets/logo.png" alt="Logo">
</nav>
<div class="background-image">
<img src="assets/food-item2.jpeg" alt="Image">
</div>
<?php
// (A) START SESSION
/*session_start();
// (B) LET'S SAY WE HAVE A SHOPPING CART
$_SESSION["cart"] = [
"123" => [
"name" => "Foo bar",
"qty" => 99
],
"234" => [
"name" => "Doge",
"qty" => 88
]
]; */
// (C) WHAT'S IN THE CART?
//print_r($_SESSION);
//var_dump($_SESSION);
?>
<section class="hero-section">
<h1 class="hero-title">Don't miss the opportunity</h1>
<p class="hero-copy">Join our dynamic team at iTextiles and become part of a passionate community dedicated to redefining the textile industry. Explore exciting career opportunities that foster innovation, creativity, and growth, as we weave together a future of excellence in fabrics and design.</p>
<div class="hero-gifts">
<a href="#" class="hero-link">SEND RESUME<i class="fa fa-arrow-right hero-icon"></i></a>
<a href="#" class="hero-link">CHECK ELIGIBILITY<i class="fa fa-arrow-right hero-icon"></i></a>
</div>
</section>
<div class="section-divider">
<hr />
</div>
<section class="hero-section">
<h1 class="hero-title">INQUIRIES</h1>
<form class="contact-inquiries">
<div class="form-control">
<label>Your Name (required)</label>
<input type="text"/>
</div>
<div class="form-control">
<label>Your Email (required)</label>
<input type="text"/>
</div>
<div class="form-control">
<label>Your Phone number (optional)</label>
<input type="text"/>
</div>
<div class="form-control">
<label>Location Visited (optional)</label>
<input type="text"/>
</div>
<div class="form-control">
<label>Location Visited (optional)</label>
<textarea type="text" rows="8"></textarea>
</div>
<div class="form-control">
<button>Send Message</button>
</div>
</form>
</section>
<footer class="footer">
<div class="footer-row-1">
<div class="footer-logo">
<img src="assets/logo.png" alt="Logo">
</div>
<div class="footer-social">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-row">
<div class="footer-section">
<ul>
<li><a href="about.php">About</a></li>
<li><a href="menu.php">Menu</a></li>
<li><a href="#">Catering</a></li>
<li><a href="#">News</a></li>
</ul>
</div>
<div class="footer-section">
<ul>
<li><a href="#">Locations</a></li>
<li><a href="#">Franchise</a></li>
<li><a href="#">Careers</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<ul>
<li><a href="#">Fabric Raw material Information</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Site Map</a></li>
<li><a href="#">Accessibility</a></li>
</ul>
</div>
</div>
<hr>
<div class="footer-row">
<p>Copyright © 2023 Textile Company. All rights reserved.</p>
</div>
</footer>
</body>
</html>