-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
174 lines (160 loc) · 5 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
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
169
170
171
172
173
174
<!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>Dev_Connect</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section class="form">
<div class="title-group">
<h1 id="title">Dev_Connect 🌐</h1>
<p id="description">Join the worldwide community of developers!</p>
</div>
<form id="survey-form">
<fieldset>
<div class="name-group">
<label id="first-name-label" for="first-name">Name</label>
<input
type="text"
name="first-name"
id="first-name"
class="form-control"
placeholder="First name"
autocomplete="off"
/>
</div>
<div class="name-group">
<label id="last-name-label" for="last-name"
><span class="no-select"> </span></label
>
<input
type="text"
name="last-name"
id="last-name"
class="form-control"
placeholder="Last name"
autocomplete="off"
/>
</div>
</fieldset>
<div class="form-group">
<label id="email-label" for="email">Email</label>
<input
type="email"
name="email"
id="email"
class="form-control"
placeholder="Enter your Email"
autocomplete="off"
/>
</div>
<div class="form-group">
<label id="password-label" for="password">Password</label>
<input
type="password"
name="password"
id="password"
class="form-control"
placeholder="Enter your password"
/>
</div>
<div class="form-group">
<label id="confirm-password-label" for="confirm-password"
>Confirm Password</label
>
<input
type="password"
name="confirm-password"
id="confirm-password"
class="form-control"
placeholder="Confirm your password"
/>
</div>
<div class="form-group checkbox-group">
<p>Select your areas of interest</p>
<label for="front-end"
><input
name="interests"
value="front-end"
type="checkbox"
id="front-end"
class="input-checkbox"
/>Front-end</label
>
<label for="back-end"
><input
name="interests"
value="back-end"
type="checkbox"
id="back-end"
class="input-checkbox"
/>Back-end</label
>
<label for="ui-ux"
><input
name="interests"
value="ui-ux"
type="checkbox"
id="ui-ux"
class="input-checkbox"
/>UX/UI Design</label
>
<label for="data-science"
><input
name="interests"
value="data-science"
type="checkbox"
id="data-science"
class="input-checkbox"
/>Data Science</label
>
</div>
<div class="form-group">
<p>Tell us more about yourself and what you hope to learn</p>
<textarea
id="additional-info"
class="input-textarea"
name="additional-info"
placeholder="Share your background, experience, and learning expectations..."
autocomplete="off"
></textarea>
</div>
<div class="form-button">
<button type="submit" id="submit" class="submit-button">
Submit
</button>
</div>
</form>
</section>
<div id="myToast" class="toast">
<div class="toast-content">
<p id="toastMessage"></p>
</div>
</div>
<div id="emailToast" class="toast">
<div class="toast-content">
<p id="emailToastMessage"></p>
</div>
</div>
<div id="passwordMismatchToast" class="toast">
<div class="toast-content">
<p id="passwordMismatchToastMessage"></p>
</div>
</div>
<div id="confirmationToast" class="toast">
<div class="toast-content">
<p id="confirmationToastMessage"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>