Forms Bootstrap 5Free+ CSS
Registration form — Bootstrap forms snippet — a free Bootstrap 5 form snippet. Copy the HTML & CSS and paste straight into your Bootstrap 5 project.
12.7k views662 downloads
gosnippets.com/preview/registration-form-—-bootstrap-forms-snippet
Source Code
1 <div class="wrapper">
2 <div class="form">
3 <h1 class="title">Create an account</h1>
4
5 <form action="#" class="myform">
6 <div class="control-from">
7 <label for="firstname">First Name *</label>
8 <input type="text" id="firstname" value="" required>
9 </div>
10
11 <div class="control-from">
12 <label for="lastname">Last Name *</label>
13 <input type="text" id="lastname" value="" required>
14 </div>
15
16 <div class="control-from">
17 <label for="emailaddress">Email Address *</label>
18 <input type="text" id="emailaddress" value="" required>
19 </div>
20
21 <div class="control-from">
22 <label for="phonenumber">Phone Number</label>
23 <input type="phone" id="phonenumber" value="" required>
24 </div>
25
26 <div class="full-width">
27 <label for="companyname">Company Name</label>
28 <input type="text" id="companyname" value="" required>
29 </div>
30
31 <div class="control-from">
32 <label for="businesscategory">Business Category</label>
33 <input type="text" id="businesscategory" value="" required>
34 </div>
35
36 <div class="control-from">
37 <label for="location">Location </label>
38 <input type="text" id="location" value="" required>
39 </div>
40
41 <div class="button">
42 <button id="register">Register</button>
43 </div>
44
45 </form>
46 </div>
47 </div>
48
49More Forms snippets

Bootstrap 5 simple login form with social login
Free Bootstrap 5 form snippet — Bootstrap 5 simple login form with social login. Preview, copy HTML & CSS, drop it into any Bootstrap 5 project.
FormsView →

Bootstrap 5 Login Form UI Design snippets
Bootstrap 5 Login Form UI Design snippets: a hand-crafted, open-source Bootstrap 5 form. HTML & CSS included, ready to copy.
FormsView →

Bootstrap 5 Fancy user login form snippets
Free Bootstrap 5 form snippet — Bootstrap 5 Fancy user login form snippets. Preview, copy HTML & CSS, drop it into any Bootstrap 5 project.
FormsView →
Comments(0)
No comments yet — be the first to start the discussion.
Sign in to join the conversation.