forked from agamjotsingh18/codesetgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin-us-form.html
58 lines (58 loc) · 2.12 KB
/
join-us-form.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
<!DOCTYPE html>
<html>
<head>
<link href="assets/img/Light Blue.jpg" rel="icon" />
<title>Registrations for CodeSetGo Captain Program</title>
<link rel="stylesheet" href="join-us-form.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
</head>
<body>
<section class="contactpage">
<div class="contactimg">
<img src="assets/img/contact_image.svg" alt="Contact Us Image" />
</div>
<div class="contactform">
<h1>Registrations for <span>CodeSetGo</span> Captain Program</h1>
<form action="https://formsubmit.co/9e960606c0805e44e7aec5a93537b0cf" method="POST">
<div>
<input type="text" id="name" name="Name" placeholder="Your Name" />
<input type="email" id="email" placeholder="Your Email" name="Email"/>
</div>
<div>
<input type="text" id="college" placeholder="College (With City)" name="College" />
<input
type="year"
id="year"
placeholder="Expected Graduation Year" name="Graduation Year"
/>
</div>
<div>
<input type="number" id="phone" placeholder="Phone (WhatsApp)" name="Phone Number (WhatsApp)"/>
<input type="text" id="country" placeholder="Country" name="Country"/>
</div>
<div>
<textarea
id="whycaptain"
rows="4"
placeholder="Why do you want to become CodeSetGo Captain?" name="Why do you want to become CodeSetGo Captain?"
></textarea>
<textarea
id="comment"
rows="8"
placeholder="Any Comments or Questions? (Not Mandatory)" name="Any Comments or Questions? "
></textarea>
</div>
<button type="submit">SUBMIT FORM</button>
</form>
</div>
</section>
<script src="https://smtpjs.com/v3/smtp.js"></script>
</body>
</html>