forked from agamjotsingh18/codesetgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
join-us-form.html
56 lines (56 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./assets/css/join-us.css">
</head>
<body>
<div class="joinuser">
<span class="joinUserTitle">Join Us!</span>
<form action="./forms/contact.php" method="POST" class="userUpdateForm">
<div class="userUpdateLeft">
<div class="joinUserInfo">
<label >Name ✨</label>
<input type="text" placeholder="anna@42" class="userUpdateInput" />
</div>
<div class="joinUserInfo">
<label >Email ✉️</label>
<input type="text" placeholder="[email protected]" class="userUpdateInput" />
</div>
<div class="joinUserInfo">
<label >College 🎓(with city) </label>
<input type="text" placeholder="Anna Joseph" class="userUpdateInput" />
</div>
<div class="joinUserInfo">
<label >Expected Graduation year</label>
<input type="text" placeholder="2024" class="userUpdateInput" />
</div>
<div class="joinUserInfo">
<label >Whatsapp Phone Number 🔢 (add country code)</label>
<input type="text" placeholder="+91 88888 88888" class="userUpdateInput" />
</div>
<div class="joinUserInfo">
<label >✅ Country </label>
<input type="text" placeholder="India" class="userUpdateInput" />
</div>
<div class="joinUserInfo">
<label >✅ Why do you want to become CodeSetGo Captain? (Three Lines)</label>
<input type="text" rows="5" placeholder="..." class="userUpdateInput" />
</div>
<div class="joinUserInfo">
<label >Any Other Comments or Suggestions?</label>
<input type="text" placeholder="..." class="userUpdateInput" />
</div>
<div class="joinUserInfo">
<label > 🚀 Where we can improve? Feel free to provide feedback!</label>
<input type="text" placeholder="..." class="userUpdateInput" />
</div>
<button type="submit" value="Send" class="btnsubmit">Submit</button>
</div>
</form>
</div>
</body>
</html>