Bootstrap Simple Login Form #Part 2

Bootstrap Simple Login Form #Part 2

           In this article we make a simple login form with use of Bootstrap.



Bootstrap CDN link

<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" >

HTML Code


    

    

    <form>

<div class="form-group text-center bg-info text-success">

<h3>Login</h3>

</div>

<div class="form-group">

<label>Email</label>

</div>

<div class="form-group">

<input type="email" class="form-control">

</div>

<div class="form-group">

<label>password</label>

</div>

<div class="form-group">

<input type="password" class="form-control">

</div>

<div class="form-group">

<button type="submit" class="btn btn-primary mt-3">Submit</button>

</div>

</form>

    


Try it Yourself...

what you think about this article ??

Post a Comment

Previous Post Next Post