-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
115 lines (92 loc) · 4.06 KB
/
contact.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
<?php
include("header.php");
?>
<!-- Banner Image -->
<div class="banner-image w-100 vh-100 d-flex justify-content-center align-items-center" style="background-image: url('images/bannerimg.jpg');">
<div class="content text-center">
<h1 class="text-white">Contact us</h1>
</div>
</div>
<!-- Main Content Area -->
<div class="container-fluid border_card my-5" style="text-align: center;">
<div class="container py-5 p-3">
<div>
<div style="color:#008080; ">
<img src="images/office.png" height="60px" width="auto">
<h2>Office:</h2>
</div>
<div>
<h3 style="font-family: 'Aileron', Regular;">Dr. Kavya Dashora</h3>
<h5 style="font-family: 'Aileron', Regular;">
Associate Professor<br>
Room no 276, Block III,<br>
Centre for Rural Development and Technology<br>
Indian Institute of Technology Delhi,<br>
Hauz khas, New Delhi-110016<br>
</h5>
</div>
</div>
<br><br>
<div>
<div style="color:#008080; ">
<img src="images/lab.png" height="60px" width="auto">
<h2>Lab:</h2>
</div>
<div>
<h5 style="font-family: 'Aileron', Regular;">
Agri-Nanobiotechnology Lab,
<br> Room number 280, Block III,
<br>IIT Delhi-110016
</h5>
</div>
</div>
<br> <br>
<div>
<div style="color:#008080;">
<img src="images/mail.png" height="50px" width="auto">
<h2>Contact:</h2>
</div>
<h5 style="font-family: 'Aileron', Regular;">Email: [email protected]<br>
Phone: 2659-1133<br>
Mobile: 9968354317
</h5>
</div>
</div>
</div>
<div class="container my-5" style="display: flex;
justify-content: center;
align-items: center;">
<div class="form_card box_shadow p-5">
<div class="pybottom">
<h5 style="color:#002a73;">If you are interested to work with us, please share your resume here. We will get back to you.</h5>
</div>
<form id="myForm" action="https://docs.google.com/forms/d/e/1FAIpQLSdHVIJOWUQdD4jLHJ4GI0daPZtWaxQVH-0UZ8HJviDGxgHk_Q/formResponse" onsubmit="this.submit(); this.reset(); return false;">
<div class="form-group p-1 px-3">
<label for="exampleFormControlInput1">Your Name</label>
<input type="text" name="entry.704798293" required class="form-control" id="exampleFormControlInput1">
</div>
<div class="form-group p-1 px-3">
<label for="exampleFormControlInput1">Your Email</label>
<input type="email" name="entry.510677314" required class="form-control" id="exampleFormControlInput1">
</div>
<div class="form-group p-1 px-3">
<label for="exampleFormControlSelect1">Subject</label>
<input type="text" name="entry.1398535834" required class="form-control" id="exampleFormControlInput1">
</div>
<div class="form-group p-1 px-3">
<label for="exampleFormControlTextarea1">Message</label>
<textarea class="form-control" name="entry.519175831" required id="exampleFormControlTextarea1" rows="4"></textarea>
</div>
<div class="form-group p-1 px-3">
<label for="exampleFormControlSelect1">Resume link</label>
<input type="link" name="entry.425675296" required class="form-control" id="exampleFormControlInput1">
</div>
<div class="p-4 d-flex justify-content-center">
<button type="submit" class="btn px-5" onclick="this.form.target='_blank';return true;" style="background-color:#008080; color:white;">Submit</button>
</div>
</form>
</div>
</div>
<?php
include("footer.php");
?>