-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (22 loc) · 876 Bytes
/
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
<div class="d-flex justify-content-center container">
<div class="row d-flex justify-content-center flex-nowrap card m-2 p-2 rounded-3">
<div class="col-12 m-2 d-flex justify-content-center">
<h2>Custom Label for input</h2>
</div>
<div class="col-12">
<div id="placeHolderCustom">
<label>Name <span class="text-danger">*</span></label>
<input type="text" name="name" class="form-control" />
</div>
</div>
<div class="col-12">
<div id="placeHolderCustom">
<label>Last Name<span class="text-danger">*</span></label>
<input type="text" name="lastname" class="form-control"/>
</div>
</div>
<div class="col-12 d-flex justify-content-center">
<a href="#" class="btn btn-secondary rounded-pill">Go somewhere</a>
</div>
</div>
</div>