File tree Expand file tree Collapse file tree 1 file changed +30
-11
lines changed
exercises/08-Bootstrap-Forms Expand file tree Collapse file tree 1 file changed +30
-11
lines changed Original file line number Diff line number Diff line change 1- < form action ="# " class ="bg-secondary rounded p-5 ">
2- < h2 > Please login</ h2 >
3- < div class ="form-group m-2 ">
4- < input type ="email " class ="form-control " placeholder ="Email Address " />
5- </ div >
6- < div class ="form-group m-2 ">
7- < input type ="password " class ="form-control " placeholder ="Password " />
8- </ div >
1+ <!DOCTYPE html>
2+ < html >
3+ < head >
4+ < meta charset ="utf-8 " />
5+ < meta name ="viewport " content ="width=device-width " />
6+ < link
7+ href ="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css "
8+ rel ="stylesheet "
9+ integrity ="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC "
10+ crossorigin ="anonymous "
11+ />
12+ < title > 08 Bootstrap Forms</ title >
13+ </ head >
14+ < body >
15+ < div class ="col-3 mx-auto my-5 ">
16+ <!-- Add your code below this line -->
17+ < form action ="# " class ="bg-secondary rounded p-5 ">
18+ < h2 > Please login</ h2 >
19+ < div class ="form-group m-2 ">
20+ < input type ="email " class ="form-control " placeholder ="Email Address " />
21+ </ div >
22+ < div class ="form-group m-2 ">
23+ < input type ="password " class ="form-control " placeholder ="Password " />
24+ </ div >
925
10- < input type ="checkbox " class ="mx-2 " /> < label > Remember me</ label >
11- < button type ="button " class ="m-2 bg-primary w-100 rounded border-0 text-white "> Login</ button >
12- </ form >
26+ < input type ="checkbox " class ="mx-2 " /> < label > Remember me</ label >
27+ < button type ="button " class ="m-2 bg-primary w-100 rounded border-0 text-white "> Login</ button >
28+ </ form >
29+ </ div >
30+ </ body >
31+ </ html >
You can’t perform that action at this time.
0 commit comments