forked from aseelalmutareb/BeaverON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcareers.html
108 lines (106 loc) · 3.65 KB
/
careers.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta upload-image-btnarset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./careers.css" />
<title>Careers</title>
</head>
<body>
<header class="header-carrer text-gray-600 body-font">
<div
class="container mx-auto flex flex-wrap p-4 flex-col md:flex-row items-center"
>
<a
href="index.html"
class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0"
>
<img class="logoImg" src="./img/logo.png" alt="logoBeaver" />
</a>
<nav
class="md:ml-auto flex flex-wrap items-center text-base justify-center"
>
<a class="navLink mr-5 hover:text-gray-900" href="about.html"
>About</a
>
<a class="navLink mr-5 hover:text-gray-900" href="services.html"
>Services</a
>
<a class="navLink mr-5 hover:text-gray-900" href="careers.html"
>Careers</a
>
<a class="navLink mr-5 hover:text-gray-900" href="contact.html"
>Contact</a
>
<a href="./freeAudit.html" class="navLink mr-5 hover:text-gray-900"
>Free Audit</a
>
</nav>
</div>
</header>
<div class="form-join">
<div class="wrap-join flex flex-col text-center w-full mb-20"></div>
<div class="carrer-wrapper">
<video
src="./video/join-us.mp4"
class="videoBanner"
autoplay
loop
muted
></video>
<div class="bg-white relative flex flex-wrap py-6 rounded shadow-md pink-border">
<div class="lg:w-1/2 px-6">
<form
accept-charset="UTF-8"
action="https://getform.io/f/256aaa5a-65ed-48e8-a53c-faff9d221b0d"
method="POST"
enctype="multipart/form-data"
target="_blank"
>
<div class="form-group">
<label for="exampleInputName">Full Name*</label>
<input
type="text"
name="fullname"
class="form-control"
id="exampleInputName"
placeholder="Your Name*"
required="required"
/>
</div>
<div class="form-group">
<label for="exampleInputEmail1" required="required"
>Email address*</label
>
<input
type="email"
name="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Your Email*"
/>
</div>
<div class="form-group mt-3">
<label class="mr-4">Upload your CV:</label>
<input
type="file"
class="upload-image-btn text-white btn btn-submit border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg"
/>
</div>
<button
type="submit"
class="upload-image-btn bg-indigo-500 text-white btn btn-submit border-0 py-2 px-6 focus:outline-none hover:bg-indigo-600 rounded text-lg"
>
Submit
</button>
</form>
</div>
</div>
</div>
</div>
</body>
</html>