-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
168 lines (142 loc) · 7.22 KB
/
join.html
File metadata and controls
168 lines (142 loc) · 7.22 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Joining Form | ExploitInject</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Join the ExploitInject team. Fill out the form to apply for a company account and start your journey in tech and cyber security.">
<meta name="keywords" content="ExploitInject, Joining Form, Career, Cyber Security, Web Development">
<meta name="author" content="ExploitInject Team">
<!-- Favicon -->
<link rel="icon" href="https://i.ibb.co/JWrx9kZG/Simple-Profile-Photo-Instagram-Post.png" type="image/png">
<!-- Fonts & Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Custom Styles -->
<link rel="stylesheet" href="join.css">
</head>
<body>
<!-- Custom Cursor -->
<div class="cursor-glow"></div>
<div class="cursor-outer"></div>
<!-- Background Elements -->
<div class="bg-wrapper">
<canvas id="particleCanvas"></canvas>
<div class="grid-overlay"></div>
<div class="glow-blob blob-1"></div>
<div class="glow-blob blob-2"></div>
<div class="glow-blob blob-3"></div>
</div>
<main class="container">
<div class="form-card">
<header class="header">
<h1>Joining Form</h1>
<p>Welcome to ExploitInject! Please provide your details below.</p>
</header>
<form id="joiningForm" action="https://form.codewithtanim.works/f/2cef8dd7a9c0099c" method="POST" autocomplete="off">
<!-- Redirect after submit -->
<input type="hidden" name="_redirect" value="Thank-You.html">
<!-- Anti-bot -->
<input type="text" name="_honeypot" style="display:none">
<div class="form-grid">
<!-- Username -->
<div class="input-group">
<label for="username">Username</label>
<div class="input-wrapper">
<i class="fas fa-at"></i>
<input type="text" id="username" name="username" placeholder="e.g. tanim" required autocomplete="nickname">
</div>
<p class="error-text">Only one word allowed.</p>
</div>
<!-- Full Name -->
<div class="input-group">
<label for="fullName">Full Name</label>
<div class="input-wrapper">
<i class="fas fa-user"></i>
<input type="text" id="fullName" name="fullName" placeholder="E.G. SAMIUR RAHMAN" required>
</div>
</div>
<!-- Email -->
<div class="input-group full-width">
<label for="email">Personal Mail</label>
<div class="input-wrapper">
<i class="fas fa-envelope"></i>
<input type="email" id="email" name="email" placeholder="example@mail.com" required>
</div>
</div>
<!-- WhatsApp Number -->
<div class="input-group">
<label for="whatsapp">WhatsApp Number</label>
<div class="input-wrapper">
<i class="fab fa-whatsapp"></i>
<input type="tel" id="whatsapp" name="whatsapp" placeholder="+88015..." required>
</div>
</div>
<!-- Emergency Number -->
<div class="input-group">
<label for="emergency">Emergency Number</label>
<div class="input-wrapper">
<i class="fas fa-phone-alt"></i>
<input type="tel" id="emergency" name="emergency" placeholder="+88015..." required>
</div>
</div>
<!-- Facebook Link -->
<div class="input-group">
<label for="facebook">Facebook Link</label>
<div class="input-wrapper">
<i class="fab fa-facebook-f"></i>
<input type="url" id="facebook" name="facebook" placeholder="https://facebook.com/..." required>
</div>
</div>
<!-- Instagram Link -->
<div class="input-group">
<label for="instagram">Instagram Link</label>
<div class="input-wrapper">
<i class="fab fa-instagram"></i>
<input type="url" id="instagram" name="instagram" placeholder="https://instagram.com/..." required>
</div>
</div>
<!-- GitHub Link -->
<div class="input-group">
<label for="github">GitHub Link</label>
<div class="input-wrapper">
<i class="fab fa-github"></i>
<input type="url" id="github" name="github" placeholder="https://github.com/..." required>
</div>
</div>
<!-- LinkedIn Link -->
<div class="input-group">
<label for="linkedin">LinkedIn Link</label>
<div class="input-wrapper">
<i class="fab fa-linkedin-in"></i>
<input type="url" id="linkedin" name="linkedin" placeholder="https://linkedin.com/in/..." required>
</div>
</div>
<!-- YouTube Link -->
<div class="input-group full-width">
<label for="youtube">YouTube Link</label>
<div class="input-wrapper">
<i class="fab fa-youtube"></i>
<input type="url" id="youtube" name="youtube" placeholder="https://youtube.com/..." required>
</div>
</div>
<!-- Password -->
<div class="input-group full-width">
<label for="password">Password (for Company Account)</label>
<div class="input-wrapper">
<i class="fas fa-lock"></i>
<input type="password" id="password" name="password" placeholder="Create a strong password" required>
</div>
</div>
</div>
<button type="submit" class="submit-btn">
Join Now <i class="fas fa-paper-plane"></i>
</button>
<div id="statusMsg"></div>
</form>
</div>
</main>
<!-- Custom Script -->
<script src="join.js"></script>
</body>
</html>