Hey coders! I'm CodingPorium here! In this post, i will be uploading the source codes for this project. I have added comments for most lines to help you understand the code easily. Thanks and bye!
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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | <!-- Created by CodingPorium,2021. Visit https://youtube.com/c/CodingPorium for more tutorials with free source code --> <!DOCTYPE html> <html> <head> <title>Responsive Registration Form With Popup Modal | CodingPorium</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css"> <style> /*Import Poppins font*/ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); body{ font-family:poppins; background-color: #007bff; } * { box-sizing: border-box; } /*The container below will be used to store the form*/ .container { box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; border-radius: 5px; background-color: #f2f2f2; padding: 20px; } /*Customize text input field*/ input[type=text], select, textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; resize: vertical; } /*Customize number input field*/ input[type=number], select, textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; resize: vertical; } /*Customize email input field*/ input[type=email], select, textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; resize: vertical; } /*Customize label for input fields to make the label appear on the left side.*/ label { padding: 12px 12px 12px 0; display: inline-block; } /*Customize submit input field*/ input[type=submit] { background-color: #643bf7; color: white; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; float: right; transition:0.3s; } /*Enable hover effects for submit button*/ input[type=submit]:hover { background-color: #b63bf7; } /*Customize a grid with the ratio of 1:3 or 25%/75% CSS Grid*/ .col-25 { float: left; width: 25%; margin-top: 6px; } .col-75 { float: left; width: 75%; margin-top: 6px; } /* Clear floats after the columns */ .row:after { content: ""; display: table; clear: both; } /* Responsive layout using media queries */ @media screen and (max-width: 600px) { .col-25, .col-75, input[type=submit] { width: 100%; margin-top: 0; } } /*Code for custom toggle switch*/ .switch { position: relative; display: inline-block; width: 60px; height: 34px; } .switch input { opacity: 0; width: 0; height: 0; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; -webkit-transition: .4s; transition: .4s; } .slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; -webkit-transition: .4s; transition: .4s; } /*code for blue color when checked*/ input:checked + .slider { background-color: #2196F3; } input:checked + .slider:before { -webkit-transform: translateX(26px); -ms-transform: translateX(26px); transform: translateX(26px); } /* Rounded sliders */ .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; } /*Code for successful registration popup*/ .popup { width:350px; height:280px; padding:30px 20px; background:#9fb2d1; border-radius:10px; box-sizing:border-box; z-index:2; text-align:center; opacity:0; top:-200%; transform:translate(-50%,-50%) scale(0.5); transition: opacity 300ms ease-in-out, top 1000ms ease-in-out, transform 1000ms ease-in-out; } .popup.active { opacity:1; top:50%; transform:translate(-50%,-50%) scale(1); transition: transform 300ms cubic-bezier(0.18,0.89,0.43,1.19); } .popup .icon { margin:5px 0px; width:50px; height:50px; border:2px solid #34f234; text-align:center; display:inline-block; border-radius:50%; line-height:60px; } .popup .icon i.fa { font-size:30px; color:#34f234; } .popup .title { margin:5px 0px; font-size:30px; font-weight:600; } .popup .description { color:#222; font-size:15px; padding:5px; } .popup .dismiss-btn { margin-top:15px; } .popup .dismiss-btn button { padding:10px 20px; background:#111; color:#f5f5f5; border:2px solid #111; font-size:16px; font-weight:600; outline:none; border-radius:10px; cursor:pointer; transition: all 300ms ease-in-out; } .popup .dismiss-btn button:hover { color:#111; background:#f5f5f5; } .popup > div { position:relative; top:10px; opacity:0; } .popup.active > div { top:0px; opacity:1; } .popup.active .icon { transition: all 300ms ease-in-out 250ms; } .popup.active .title { transition: all 300ms ease-in-out 300ms; } .popup.active .description { transition: all 300ms ease-in-out 350ms; } .popup.active .dismiss-btn { transition: all 300ms ease-in-out 400ms; } /*Code to make successful popup appear in center of page*/ .center { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); } </style> </head> <body> <!--Container of the form--> <div class="container"> <!--Form title in the cointaner--><div style="text-align:center"> <h2>Event Registration</h2> <p>Date:DD/MM/YYYY, Time: H:M PM</p> </div> <!--Form--> <form action="#"> <div class="row"> <div class="col-25"> <label for="fname">First Name</label> </div> <div class="col-75"> <input type="text" placeholder="Your name.."required> </div> </div> <div class="row"> <div class="col-25"> <label for="lname">Last Name</label> </div> <div class="col-75"> <input type="text" placeholder="Your last name.."required> </div> </div> <div class="row"> <div class="col-25"> <label for="lname">Email</label> </div> <div class="col-75"> <input type="email" placeholder="Your email.."required> </div> </div> <div class="row"> <div class="col-25"> <label>Phone number</label> </div> <div class="col-75"> <input type="number" placeholder="Your phone number..."required> </div> </div> <div class="row"> <div class="col-25"> <label>Send me copy of my responses</label> </div> <div class="col-75"> <!--Code for toggle switch--> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </div> </div> <div class="row"> <input id="open-popup-btn" type="submit" value="Submit"> </div> </form> </div> <!--Code for the modal--> <div class="popup center"> <div class="icon"> <!--Check icon from FontAwesome (refer to code line:7--><i class="fa fa-check"></i> </div> <div class="title"> Success!! </div> <div class="description"> We have received your registration! Please check your email for your booking ID. </div> <div class="dismiss-btn"> <!--Button to close the modal--><button id="dismiss-popup-btn"> Dismiss </button> </div> </div> </body> <script> //code to enable modal popup if submit button is clicked document.getElementById("open-popup-btn").addEventListener("click",function(){ document.getElementsByClassName("popup")[0].classList.add("active"); }); //code to close the popup when dismiss button is clicked in the modal document.getElementById("dismiss-popup-btn").addEventListener("click",function(){ document.getElementsByClassName("popup")[0].classList.remove("active"); }); </script> </html> |
Post a Comment