-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIndex.html
81 lines (65 loc) · 4.81 KB
/
Index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ACM Registration Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<img src="https://register.acmtiet.com/acm.png" alt="Logo" class="nav-logo">
</nav>
<section id="main-container">
<section id="form-area">
<h3>Apply Now</h3>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="branch">Branch:</label>
<input type="text" id="branch" name="branch" placeholder="Enter your branch" required>
<label for="roll-number">Roll No. (Application No.):</label>
<input type="text" id="roll-number" name="roll-number" placeholder="Enter your roll number" required>
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" placeholder="Enter your phone number" required>
<label for="reason">Why do you want to join ACM?</label>
<textarea id="reason" name="reason" rows="4" placeholder="Long answer text" required></textarea>
<label for="unique">What sets you apart from other candidates?</label>
<textarea id="unique" name="unique" rows="4" placeholder="Long answer text" required></textarea>
<label for="other-societies">Are you involved in any other societies?</label>
<textarea id="other-societies" name="other-societies" rows="4" placeholder="Long answer text" required></textarea>
<label for="tech-stack">What is your tech stack?</label>
<textarea id="tech-stack" name="tech-stack" rows="4" placeholder="Long answer text" required></textarea>
<p>Which tech department(s) interest you?</p>
<label><input type="checkbox" name="tech-dept" value="Web Development"> Web Development</label>
<label><input type="checkbox" name="tech-dept" value="App Development"> App Development</label>
<label><input type="checkbox" name="tech-dept" value="Machine Learning/AI/Data Science"> Machine Learning/AI/Data Science</label>
<label><input type="checkbox" name="tech-dept" value="UI/UX"> UI/UX</label>
<label><input type="checkbox" name="tech-dept" value="Cybersecurity"> Cybersecurity</label>
<label><input type="checkbox" name="tech-dept" value="DevOps"> DevOps</label>
<label><input type="checkbox" name="tech-dept" value="Blockchain"> Blockchain</label>
<label><input type="checkbox" name="tech-dept" value="Game Development"> Game Development</label>
<label for="work-experience">Proof of prior work experience:</label>
<textarea id="work-experience" name="work-experience" rows="4" placeholder="Long answer text" required></textarea>
<label for="extra-links">Extra Links (e.g., GitHub, LinkedIn, LeetCode):</label>
<textarea id="extra-links" name="extra-links" rows="4" placeholder="Long answer text"></textarea>
<p>Which non-tech department(s) interest you?</p>
<label><input type="checkbox" name="non-tech-dept" value="Marketing"> Marketing</label>
<label><input type="checkbox" name="non-tech-dept" value="Design/Video Editing"> Design/Video Editing</label>
<label><input type="checkbox" name="non-tech-dept" value="Social Media"> Social Media</label>
<label><input type="checkbox" name="non-tech-dept" value="Content"> Content</label>
<label><input type="checkbox" name="non-tech-dept" value="PR and Outreach"> PR and Outreach</label>
<label><input type="checkbox" name="non-tech-dept" value="Finance"> Finance</label>
<label><input type="checkbox" name="non-tech-dept" value="Other"> Other</label>
<label for="non-tech-experience">Do you have prior experience in non-tech departments?</label>
<textarea id="non-tech-experience" name="non-tech-experience" rows="4" placeholder="Long answer text" required></textarea>
<button type="submit" class="submit-button">Submit</button>
</form>
</section>
</section>
<img src="https://register.acmtiet.com/assets/acm-C0ACLNBk.png" alt="Left Image" class="left-image">
<img src="https://register.acmtiet.com/assets/smart-people-C52owZwK.png" alt="Right Image" class="right-image">
</body>
</html>