Skip to content

Commit 330583f

Browse files
Solution.hide.html added to the 8th exercsie
1 parent 80e800a commit 330583f

File tree

1 file changed

+30
-11
lines changed

1 file changed

+30
-11
lines changed
Lines changed: 30 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,31 @@
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>

0 commit comments

Comments
 (0)