-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHome.html
157 lines (151 loc) · 5.1 KB
/
Home.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Servey Form</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="" />
<link rel="stylesheet" href="bootstrap.css" />
<link rel="stylesheet" href="Home.css" />
<script src="Home.js" type="module" defer></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="container m-auto">
<div class="row">
<h3 class="text-center mt-3">HACKTOBERFEST-2023</h3>
<div class="offset-sm-3 col-sm-6 offset-sm-3">
<!-- Form start here -->
<form class="mt-2 shadow-lg" id="form">
<br />
<input
type="text"
name="firstName"
id="firstName"
class="form-control w-75 m-auto"
placeholder="Enter Your First Name"
required
/>
<br />
<input
type="text"
name="LastName"
id="LastName"
class="form-control w-75 m-auto"
placeholder="Enter Your Last Name"
/>
<br />
<input
type="email"
name="Email"
id="Email"
class="form-control w-75 m-auto"
placeholder="Enter Your Email"
required
/>
<br />
<input
type="tel"
name="mobile"
id="mobile"
class="form-control w-75 m-auto"
placeholder="Enter Your Mobile Number"
required
/>
<br />
<input
type="text"
name="github"
id="github"
class="form-control w-75 m-auto"
placeholder="Enter Your Github Id"
required
/>
<br />
<input
type="number"
name="contro"
id="contro"
class="form-control w-75 m-auto"
placeholder="Number of Contribution"
required
/>
<br />
<input
type="number"
name="pull"
id="pull"
class="form-control w-75 m-auto"
placeholder="Number of pull requests"
required
/>
<br />
<input
type="text"
name="solved"
id="Linkedin"
class="form-control w-75 m-auto"
placeholder="Enter your Linkedin id"
/>
<br />
<div class="d-flex justify-content-start w-75 m-auto">
<label action="Profession"
>Are You
<select name="Profession" id="Profession">
<option value="select an option">select an option</option>
<option value="1" id="student">Student</option>
<option value="2">Working Professional</option>
<option value="3">Open Source Contributor</option>
</select>
</label>
</div>
<br />
<div class="d-flex justify-content-start w-75 m-auto">
<div class="">
<label for="Gender">Gender</label>
<input type="radio" name="Gender" value="male" id="male" />
Male
<input
type="radio"
name="Gender"
value="female"
id="female"
/>
Female
</div>
</div>
<br />
<div class="d-flex justify-content-start w-75 m-auto p-2">
<button type="submit" class="btn btn-success shadow-lg">
Submit
</button>
</div>
</form>
<!-- Form End Here -->
<!-- Toast Section -->
<div
class="toast align-items-center text-bg-primary border-0 position-fixed top-0 end-0"
role="alert"
aria-live="assertive"
aria-atomic="true"
>
<div class="d-flex">
<div class="toast-body">Form is Successfully submitted.</div>
<button
type="button"
class="btn-close btn-close-white me-2 m-auto"
data-bs-dismiss="toast"
aria-label="Close"
></button>
</div>
</div>
<!-- toast end here -->
</div>
</div>
</div>
</div>
</body>
</html>