1. First, we need fresh reactjs setup, and for that, we need to run below commands into out terminal, and also we should have latest node version installed on our system:
npx create-react-app my-awesome-project
cd my-awesome-project
npm start
2. Now we need to run below commands into our project terminal to get bootstrap and related modules into our reactjs application:
npm install [email protected] --save
npm start //For start project again
3. Finally for the main output, we need to add below code into our my-awesome-project/src/App.js file or if you have fresh setup then you can replace my-awesome-project/src/App.js file code with below code:
import React from 'react';
import './App.css';
import 'bootstrap/dist/css/bootstrap.min.css';
function App() {
return (
<div>
<div class="container">
<br/>
<div class="row">
<div class="col-lg-5 col-md-7 mx-auto my-auto">
<div class="card">
<div class="card-body px-lg-5 py-lg-5 text-center">
<img src="https://bootdey.com/img/Content/avatar/avatar7.png" class="rounded-circle avatar-lg img-thumbnail mb-4" alt="profile-image"/>
<h2 class="text-info">2FA Security</h2>
<p class="mb-4">Enter 6-digits code from your athenticatior app.</p>
<form>
<div class="row mb-4">
<div class="col-lg-2 col-md-2 col-2 ps-0 ps-md-2">
<input type="text" class="form-control text-lg text-center" placeholder="_" aria-label="2fa"/>
</div>
<div class="col-lg-2 col-md-2 col-2 ps-0 ps-md-2">
<input type="text" class="form-control text-lg text-center" placeholder="_" aria-label="2fa"/>
</div>
<div class="col-lg-2 col-md-2 col-2 ps-0 ps-md-2">
<input type="text" class="form-control text-lg text-center" placeholder="_" aria-label="2fa"/>
</div>
<div class="col-lg-2 col-md-2 col-2 pe-0 pe-md-2">
<input type="text" class="form-control text-lg text-center" placeholder="_" aria-label="2fa"/>
</div>
<div class="col-lg-2 col-md-2 col-2 pe-0 pe-md-2">
<input type="text" class="form-control text-lg text-center" placeholder="_" aria-label="2fa"/>
</div>
<div class="col-lg-2 col-md-2 col-2 pe-0 pe-md-2">
<input type="text" class="form-control text-lg text-center" placeholder="_" aria-label="2fa"/>
</div>
</div>
<div class="text-center">
<button type="button" class="btn bg-info btn-lg my-4">Continue</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
);
}
export default App;
4. Now we need to add below code into our my-awesome-project/src/App.css file :
body{
background:#eee;
}
.card {
box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 0 solid rgba(0,0,0,.125);
border-radius: 1rem;
}
.img-thumbnail {
padding: .25rem;
background-color: #ecf2f5;
border: 1px solid #dee2e6;
border-radius: .25rem;
max-width: 100%;
height: auto;
}
.avatar-lg {
height: 150px;
width: 150px;
}