update user_id 16

This commit is contained in:
Mohamed Nouffer
2023-07-26 22:41:29 +05:30
parent e859ab2d3d
commit cd014e8561
41 changed files with 93 additions and 81 deletions

View File

@ -1,5 +1,5 @@
import React, { lazy } from 'react'
import CIcon from '@coreui/icons-react'
import React from 'react';
import CIcon from '@coreui/icons-react';
import {
CCol,
CFormGroup,
@ -11,26 +11,36 @@ import {
CCardHeader,
CCardBody,
CCardFooter,
} from '@coreui/react'
} from '@coreui/react';
const Dashboard = (props) => {
return (
<div >
<div>
<CCard className="bg-info">
<CCardBody >
<div className="text-white text-center card bg-info">
<div className="card-body">
<blockquote className="card-bodyquote">
<h3>ワンタイムパスワード :{props.userid}</h3>
<a target="_blank" href="https://openshield.ts.bizside.biz/appexe/natnats/23/bin/mobileweb2/index.html"><h1>FBS Web app</h1></a>
</blockquote>
</div>
</div>
<CCardBody>
<div className="text-white text-center card bg-info">
<div className="card-body">
<blockquote className="card-bodyquote">
{props.gotuserid ? ( // Conditional rendering based on props.gotuserid
<>
<h3>ワンタイムパスワード: {props.userid}</h3>
<a target="_blank" href="https://openshield.ts.bizside.biz/appexe/natnats/23/bin/mobileweb2/index.html">
<h1>FBS Web app</h1>
</a>
</>
) : (
<div className="text-center">
{/* Replace the following div with your wait indicator or spinner */}
<h3>Loading...</h3>
</div>
)}
</blockquote>
</div>
</div>
</CCardBody>
</CCard>
</div>
)
);
};
}
export default Dashboard
export default Dashboard;