I wish to create a login screen like Twitter. www.twitter.com
On the left of the screen I wish to have a full-size image and a form on the right.
I want the image to be right aligned so the left-hand side will be cropped if the screen is too narrow.
I am using Bootstrap 5 and my image is full height however it has lost its proportions.
<div class="container vh-100">
<div class="row vh-100">
<div class="col-6">
<img src="../assets/login.jpg" class="img-fluid float-end vh-100" alt="login">
</div>
<div class="col-6">
<!-- Form goes here -->
</div>
</div>
<div class="row">
This is the footer
</div>
</div>
Edit: In addition to creating an image full height, I see Twitter has a footer so the combination of the image & footer are full height, not just the image.