Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Join Us page improvements #485

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions join-us-form.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ textarea {
button {
background: #004a8e;
border-radius: 11px;
cursor: pointer;
font-family: "Poppins";
font-style: normal;
font-weight: 400;
Expand Down
13 changes: 8 additions & 5 deletions join-us-form.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,31 @@
<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"/>
<input required type="text" id="name" name="Name" placeholder="Your Name" />
<input required type="email" id="email" placeholder="Your Email" name="Email"/>
</div>
<div>
<input type="text" id="college" placeholder="College (With City)" name="College" />
<input required type="text" id="college" placeholder="College (With City)" name="College" />
<input
required
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"/>
<input required type="number" id="phone" placeholder="Phone (WhatsApp)" name="Phone Number (WhatsApp)"/>
<input required type="text" id="country" placeholder="Country" name="Country"/>
</div>
<div>
<textarea
required
id="whycaptain"
rows="4"
placeholder="Why do you want to become CodeSetGo Captain?" name="Why do you want to become CodeSetGo Captain?"
></textarea>
<textarea
required
id="comment"
rows="8"
placeholder="Any Comments or Questions? (Not Mandatory)" name="Any Comments or Questions? "
Expand Down