Refactor_Directory And Project Level Permsssion #404

Merged
pramod.mahajan merged 90 commits from Refactor_Directory into main 2025-09-17 10:24:46 +00:00
Showing only changes of commit 212e969258 - Show all commits

View File

@ -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="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;"
@ -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="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;"
@ -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,