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> </label>
<input <input
type="text" type="text"
className="form-control" className="form-control border border-secondary"
id="email" id="email"
{...register("email")} {...register("email")}
placeholder="Enter your email" placeholder="Enter your email"
@ -130,12 +130,13 @@ const ResetPassword = () => {
New Password New Password
</label> </label>
</div> </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 <input
type={hidepass ? "password" : "text"} type={hidepass ? "password" : "text"}
autoComplete="true" autoComplete="true"
id="password" id="password"
className="form-control" className="form-control form-control-xl border-0 shadow-none"
name="password" name="password"
{...register("password")} {...register("password")}
placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;" placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;"
@ -143,7 +144,7 @@ const ResetPassword = () => {
/> />
<button <button
type="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)} onClick={() => setHidepass(!hidepass)}
style={{ style={{
borderTopLeftRadius: 0, borderTopLeftRadius: 0,
@ -158,6 +159,7 @@ const ResetPassword = () => {
)} )}
</button> </button>
</div> </div>
{errors.password && ( {errors.password && (
<div <div
className="danger-text text-start" className="danger-text text-start"
@ -172,12 +174,12 @@ const ResetPassword = () => {
Repeat New Password Repeat New Password
</label>{" "} </label>{" "}
</div> </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 <input
type={hidepass1 ? "password" : "text"} type={hidepass1 ? "password" : "text"}
autoComplete="true" autoComplete="true"
id="password" id="password"
className="form-control" className="form-control form-control-xl border-0 shadow-none"
name="confirmPassword" name="confirmPassword"
{...register("confirmPassword")} {...register("confirmPassword")}
placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;" placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;"
@ -185,7 +187,7 @@ const ResetPassword = () => {
/> />
<button <button
type="button" type="button"
className="btn border-top border-end border-bottom " className="btn btn-link-secondary p-0 ms-2"
onClick={() => setHidepass1(!hidepass1)} onClick={() => setHidepass1(!hidepass1)}
style={{ style={{
borderTopLeftRadius: 0, borderTopLeftRadius: 0,