-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact_us_update.html
More file actions
216 lines (196 loc) · 8 KB
/
contact_us_update.html
File metadata and controls
216 lines (196 loc) · 8 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Us</title>
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="/assets/css/font-awesome.min.css" />
<!-- Bulma CSS -->
<link rel="stylesheet" href="/assets/css/bulma.min.css" />
<!-- Main CSS -->
<link rel="stylesheet" href="/assets/sass/main.css" />
</head>
<body>
<section class="contact-page-body-wrapper">
<!-- navbar area start -->
<div class="navbar-area">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item p-0" href="https://appscode.com/">
<img src="/assets/images/products/appscode/appscode.png" height="40" />
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="myNavbar">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="myNavbar" class="navbar-menu">
<div class="navbar-end">
<div class="navbar-start">
<a href="https://appscode.com/" target="_blank" class="navbar-item">
About
</a>
<a href="https://appscode.com/support/" target="_blank" class="navbar-item">
Service
</a>
</div>
<div class="navbar-item p-0">
<div class="buttons">
<a href="https://appscode.com/contact/" class="button is-primary">
<strong>Contact us</strong>
</a>
</div>
</div>
</div>
</div>
</nav>
</div>
<!-- navbar area end -->
<!-- body-content start -->
<div class="contact-page-body flex">
<!-- left content start -->
<div class="left-content">
<h1>
We’d love to <br />
hear from you
</h1>
<div class="contact-image">
<img src="/assets/images/contact-page/contact.png" alt="" />
</div>
<div class="social-link">
<a href="https://0github.com/appscode/" target="_blank"><span class="icon"><i class="fa fa-github"
aria-hidden="true"></i></span>Github</a>
<a href="https://twitter.com/AppsCodeHQ" target="_blank"><span class="icon"><i class="fa fa-twitter"
aria-hidden="true"></i></span>Twitter</a>
<a href="https://slack.appscode.com/" target="_blank"><span class="icon"><img
src="/assets/images/icon/slack.svg" alt="" /></span>Slack</a>
</div>
</div>
<!-- left content end -->
<!-- right content start -->
<div class="right-content">
<!-- form title start -->
<div class="form-title">
<h3>Contact us</h3>
</div>
<!-- form title end -->
<!-- form content start -->
<form action="#">
<!-- single input field start -->
<div class="single-input-form">
<label for="fname">First Name <span class="is-require">*</span></label>
<input type="text" placeholder="Jhon" id="fname" />
<!-- if error occured -->
<p class="is-error"></p>
</div>
<!-- single input field end -->
<!-- single input field start -->
<div class="single-input-form">
<label for="lname">Last Name <span class="is-require">*</span></label>
<input type="text" placeholder="Jhon" id="lname" />
</div>
<!-- single input field end -->
<!-- single input field start -->
<div class="single-input-form">
<label for="workemail">Work Email <span class="is-require">*</span></label>
<input type="email" placeholder="work@someone.com" id="workemail" />
</div>
<!-- single input field end -->
<!-- single input field start -->
<div class="single-input-form">
<label for="job">Job Title <span class="is-require">*</span></label>
<input type="text" placeholder="Software Engineer" id="job" />
</div>
<!-- single input field end -->
<!-- single input field start -->
<div class="single-input-form">
<label for="phone">Phone <span class="is-require">*</span></label>
<input type="text" placeholder="+8801 8648 41998" id="phone" />
</div>
<!-- single input field end -->
<!-- single input field start -->
<div class="single-input-form">
<label for="company">Company Name <span class="is-require">*</span></label>
<input type="text" placeholder="Google Inc" id="company" />
</div>
<!-- single input field end -->
<!-- single input field start -->
<div class="single-input-form">
<label for="country">Country <span class="is-require">*</span></label>
<!-- <input type="text" placeholder="Bangladesh" id="country" /> -->
<div class="select pl-0 pr-0">
<select name="" id="country">
<option value="" hidden>Select your country</option>
<option value="bd">Bangladesh</option>
<option value="in">India</option>
<option value="japan">Japan</option>
<option value="usa">USA</option>
<option value="uk">Uk</option>
</select>
</div>
</div>
<!-- single input field end -->
<!-- single input field start -->
<div class="single-input-form">
<label for="experiance">Experiance<span class="is-require">*</span></label>
<input type="text" placeholder="C, C++, Java, Golan, Docker" id="experiance" />
</div>
<!-- single input field end -->
<!-- single input field start -->
<div class="single-input-form is-fullwidth">
<label for="message">Message<span class="is-require">*</span></label>
<div class="textarea-wrapper">
<textarea name="" id="message" placeholder="How can we help you with your Kubernetes journey?"></textarea>
</div>
</div>
<!-- single input field end -->
<!-- submit button start -->
<input type="submit" value="Send Message" />
<!-- submit button end -->
</form>
<!-- form content end -->
<!-- footer content start -->
<div class="footer-wrapper">
<div class="footer-content flex items-center is-justify-content-space-between">
<div class="footer-left">
<p>© 2021 AppsCode Inc. All rights reserved.</p>
</div>
<div class="footer-right">
<a href="https://appscode.com/legal/privacy-policy/">Privacy Policy</a>
<a href="https://appscode.com/legal/tos/">Terms of Service</a>
</div>
</div>
</div>
<!-- footer content end -->
</div>
<!-- right content end -->
</div>
<!-- body-content end -->
</section>
</body>
<script>
document.addEventListener("DOMContentLoaded", () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(
document.querySelectorAll(".navbar-burger"),
0
);
// Check if there are any navbar burgers
if ($navbarBurgers.length > 0) {
// Add a click event on each of them
$navbarBurgers.forEach((el) => {
el.addEventListener("click", () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle("is-active");
$target.classList.toggle("is-active");
});
});
}
});
</script>
</html>