Refactor_Directory And Project Level Permsssion #404
@ -108,7 +108,7 @@ const ResetPassword = () => {
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
className="form-control"
|
||||
className="form-control border border-secondary"
|
||||
id="email"
|
||||
{...register("email")}
|
||||
placeholder="Enter your email"
|
||||
@ -130,12 +130,13 @@ const ResetPassword = () => {
|
||||
New Password
|
||||
</label>
|
||||
</div>
|
||||
<div className=" input-group input-group-merge">
|
||||
|
||||
<div className="input-group input-group-merge d-flex align-items-center border border-secondary rounded px-2">
|
||||
<input
|
||||
type={hidepass ? "password" : "text"}
|
||||
autoComplete="true"
|
||||
id="password"
|
||||
className="form-control"
|
||||
className="form-control form-control-xl border-0 shadow-none"
|
||||
name="password"
|
||||
{...register("password")}
|
||||
placeholder="············"
|
||||
@ -143,7 +144,7 @@ const ResetPassword = () => {
|
||||
/>
|
||||
<button
|
||||
type="button"
|
||||
className="btn btn-outline-secondy border-top border-end border-bottom "
|
||||
className="btn btn-link-secondary p-0 ms-2"
|
||||
onClick={() => setHidepass(!hidepass)}
|
||||
style={{
|
||||
borderTopLeftRadius: 0,
|
||||
@ -158,6 +159,7 @@ const ResetPassword = () => {
|
||||
)}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{errors.password && (
|
||||
<div
|
||||
className="danger-text text-start"
|
||||
@ -172,12 +174,12 @@ const ResetPassword = () => {
|
||||
Repeat New Password
|
||||
</label>{" "}
|
||||
</div>
|
||||
<div className=" input-group input-group-merge">
|
||||
<div className="input-group input-group-merge d-flex align-items-center border border-secondary rounded px-2">
|
||||
<input
|
||||
type={hidepass1 ? "password" : "text"}
|
||||
autoComplete="true"
|
||||
id="password"
|
||||
className="form-control"
|
||||
className="form-control form-control-xl border-0 shadow-none"
|
||||
name="confirmPassword"
|
||||
{...register("confirmPassword")}
|
||||
placeholder="············"
|
||||
@ -185,7 +187,7 @@ const ResetPassword = () => {
|
||||
/>
|
||||
<button
|
||||
type="button"
|
||||
className="btn border-top border-end border-bottom "
|
||||
className="btn btn-link-secondary p-0 ms-2"
|
||||
onClick={() => setHidepass1(!hidepass1)}
|
||||
style={{
|
||||
borderTopLeftRadius: 0,
|
||||
|
Loading…
x
Reference in New Issue
Block a user