forked from IIIT-ECell/website_2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recruitment.html
67 lines (66 loc) · 4.77 KB
/
recruitment.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
---
layout: page
headerImg: header.svg
cardTitle: Recruitment Form
---
<link type="text/css" href="{{site.baseurl}}/css/index.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<div class="container-fluid contact-us mt-5">
<div class="row">
<div class="col text-center p-5">
<h1>E-Cell Recruitement Form</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-11 backbox">
<form action="https://researchweb.iiit.ac.in/~abhigyan.ghosh/recruitment.php" method="POST" id="recruitment_form">
<div class="form-group">
<label for="inp-name">Full Name</label>
<input type="text" name="name" class="form-control" id="inp-name" placeholder="Name" required>
</div>
<div class="form-group">
<label for="inp-rollno"><br>Roll Number</label>
<input type="number" maxlength="10" name="rollno" class="form-control" id="inp-rollno" placeholder="Roll Number" required>
</div>
<div class="form-group">
<label for="inp-email"><br>Email address</label>
<input type="email" name="email" class="form-control" id="inp-email" placeholder="Email" required>
</div>
<div class="form-group">
<label for="inp-phoneno"><br>Phone Number</label>
<input type="number" maxlength="10" name="phoneno" class="form-control" id="inp-phoneno" placeholder="10-digit Indian Number" required>
</div>
<div class="form-group">
<label for="inp-question1"><br>Why do you wish to be a part of E-Cell ?</label>
<textarea name="question1" class="form-control" id="inp-question1" rows="3" required></textarea>
</div>
<br>
<label for="inp-deptchoice">Which departments are you interested to be a part of ? (Max 3 choices)<br><br></label>
<div class="row" style="padding-left: 20px;">
<div class="col-6">
<input type="checkbox" class="form-check-input text-center" name="team[]" value="Events" id="team"><label class="form-check-label" for="team">Events</label><br>
<input type="checkbox" class="form-check-input text-center" name="team[]" value="Operations" id="team"><label class="form-check-label" for="team">Operations</label><br>
<input type="checkbox" class="form-check-input text-center" name="team[]" value="Design" id="team"><label class="form-check-label" for="team">Design</label><br>
<input type="checkbox" class="form-check-input text-center" name="team[]" value="Finance" id="team"><label class="form-check-label" for="team">Finance</label><br>
<input type="checkbox" class="form-check-input text-center" name="team[]" value="HR" id="team"><label class="form-check-label" for="team">HR and Team Building</label><br>
</div>
<div class="col-6">
<input type="checkbox" name="team[]" class="form-check-input text-center" value="Social" id="team"><label class="form-check-label" for="team">Social Media and PR</label><br>
<input type="checkbox" name="team[]" class="form-check-input text-center" value="Marketing" id="team"><label class="form-check-label" for="team">Marketing</label><br>
<input type="checkbox" name="team[]" class="form-check-input text-center" value="Corporate" id="team"><label class="form-check-label" for="team">Corporate Relations</label><br>
<input type="checkbox" name="team[]" class="form-check-input text-center" value="Collaborations" id="team"><label class="form-check-label" for="team">Collaborations</label><br>
</div>
</div>
<div class="form-group">
<label for="inp-question2"><br>Having witnessed the events conducted by E-Cell over the past year. Identify ways to improve them and/or suggest other possible events. (Please ponder over this question and answer)</label>
<textarea name="question2" class="form-control" id="inp-question2" rows="3" required></textarea>
</div>
<button type="submit" class="btn btn-primary" name="submit" value="send">Submit</button>
<input type="hidden" name="_cc" value="[email protected]" />
<input type="hidden" name="_next" value="{{site.baseurl}}"/>
<div class="g-recaptcha" data-sitekey="6LeEkswUAAAAACV2_cyIeLGUpBB8oDnKnaQr5ZLN"></div>
</form>
</div>
</div>
</div>