-
Notifications
You must be signed in to change notification settings - Fork 0
/
career.html
159 lines (135 loc) · 6.22 KB
/
career.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CiRG AI Labs</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicons -->
<link href="img/favicon.ico" rel="icon">
<link href="img/favicon.png" rel="fav-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<script type="text/javascript">
function conf()
{
var con=confirm("We appreciate your interest. A member of our team will get in contact with you within 24 hours.");
}
</script>
</head>
<body>
<!--==========================
Header
============================-->
<header id="header" class="fixed-top">
<div class="container">
<div class="logo float-left">
<h3 style="margin-bottom: 0; margin-top: -10px;"><a href="index.html" class="scrollto">CiRG Labs</a></h3>
<p style="font-size: 9.5px;">(Unit under CIRS, PAN India organisation registered under Govt. of India;<br>Registration No. Society/598/2015-16)<p>
</div>
<nav class="main-nav float-right d-none d-lg-block">
<ul>
<li><a href="index.html">About</a></li>
<li><a href="particle/service/consulting.html">Consulting</a></li>
<li><a href="particle/service/r&dapproaches.html">R&D Approaches</a></li>
<li><a href="featuredsciences.html">Featured Sciences</a></li>
<li><a href="team.html">Experts</a></li>
<li class="active"><a href="career.html">Career</a></li>
<li><a href="contact.html">Connect</a></li>
</ul>
</nav><!-- .main-nav -->
</div>
</header><!-- #header -->
<!--==========================
About Us Section
============================-->
<section style="margin-top: 50px;" id="about">
<div class="container">
<form action="" name="submit-to-google-sheet">
<div class="form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validation"></div>
</div>
<div class="form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validation"></div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="phone_number" id="phone_number" placeholder="Phone Number" data-rule="minlen:6" data-msg="Please enter a valid Phone Number" />
<div class="validation"></div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="references" id="references" placeholder="References" data-rule="minlen:4" data-msg="Please enter your References" />
<div class="validation"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="short_bio" rows="5" data-rule="required" data-msg="Please write something about yourself" placeholder="Short Bio"></textarea>
<div class="validation"></div>
</div>
<div class="text-center"><button type="submit" title="Submit" onClick="conf()">Submit</button></div>
</form>
</div>
</section><!-- #about -->
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="container">
<p><strong>* As of now we offer only contractual position to the consultants/ scientists on the available projects.</strong><p><br><br>
<div class="copyright">
<div class="social-links">
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="skype"><i class="fa fa-skype"></i></a>
<a href="#" class="google"><i class="fa fa-google"></i></a>
<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
© Copyright <strong>CiRG</strong>. All Rights Reserved
</div>
<div class="credits">
Designed by <a href="http://nirmalnishant645.github.io">Nishant Nirmal</a>
</div>
</div>
</footer><!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<div id="preloader"></div>
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycbzllBoDZjVRFW0uoVWtrBSRgWAFp1qiIGi5W0VNgzla5rNOGj8/exec'
const form = document.forms['submit-to-google-sheet']
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, { method: 'POST', body: new FormData(form)})
.then(response => console.log('Success!', response))
.catch(error => console.error('Error!', error.message))
})
</script>
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/mobile-nav/mobile-nav.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Contact Form JavaScript File -->
<script src="contactform/contactform.js"></script>
<!-- Template Main Javascript File -->
<script src="js/main.js"></script>
</body>
</html>