xxxxxxxxxx
1
<body class="bg-warning">
2
3
<form class="m-5">
4
<!-- Email input -->
5
<div class="form-outline mb-4" >
6
<input type="email" id="form1Example1" class="form-control" class="bg-info"/>
7
<label class="form-label" for="form1Example1">Email address</label>
8
</div>
9
10
<!-- Password input -->
11
<div class="form-outline mb-4">
12
<input type="password" id="form1Example2" class="form-control" />
13
<label class="form-label" for="form1Example2">Password</label>
14
</div>
15
16
<!-- 2 column grid layout for inline styling -->
17
<div class="row mb-4">
18
<div class="col d-flex justify-content-center">
19
<!-- Checkbox -->
20
<div class="form-check">
21
<input class="form-check-input" type="checkbox" value="" id="form1Example3" checked />
22
<label class="form-check-label" for="form1Example3"> Remember me </label>
23
</div>
24
</div>
25
26
<div class="col">
27
<!-- Simple link -->
28
<a href="#!">Forgot password?</a>
29
</div>
30
</div>
31
32
<!-- Submit button -->
33
<button type="submit" class="btn btn-primary btn-block">Sign in</button>
34
</form>
35
</body>
xxxxxxxxxx
1
.form-outline .form-control{
2
background-color: #fff !important;
3
}
1
1
Console errors: 0